Analísis de datos en SofaScore

Guillermo Díaz Aguado

1. Introducción.¶

Actualmente los juegos "Fútbol Fantasy"/"Comunio" se han vuelto muy virales, estas aplicaciones están en todos los móviles de los aficionados al fútbol. Se basan en crear un equipo con jugadores de las grandes ligas y dependiendo del rendimiento de estos jugadores en sus partidos, recibirás una puntuación. Uno de los métodos de puntuación viene dado por las estadísticas de SofaScore.

El trabajo actual se basará en entender como funciona el formato e intentar encontrar los apartados mejores puntuados y qué jugadores serían los mejores para fichar.

He de decir que se me ha quedado bastante extenso intentando explicar todo, es por ello que he dejado en ROJO las partes del trabajo exigidas y que tal vez no se vean de primeras.

In [243]:
import numpy as np
from botasaurus.request import request, Request
from botasaurus_requests.response import Response
import json
from typing import Union, Sequence
from pymongo import MongoClient
import matplotlib.pyplot as plt
from scipy.stats import norm

2. Scrapear datos¶

Lo primero que necesitaremos para analizar los datos será extraer los datos de los partidos y de los jugadores de la liga que utilizaremos de referencia. Como tenemos en nuestro país una de las ligas más importantes (por no decir la más importante), utilizaremos dicho torneo español llamado La Liga y debido a que mi ordenador no es de los más potentes, utilizaremos los datos de la temporada actual, la temporada 24/25 que no lleva una gran cantidad de partidos pero en mi opinion si que son suficientes.

Para scrapear los datos he utilizado parte del código presentado por oseymour en su Github https://github.com/oseymour/ScraperFC

A continuación se presentan algunos datos iniciales para poder scrapear los datos de la API de SofaScore.

  • Inicio de la URL para acceder a la API de SofaScore.
  • Id de La Liga.
  • Id de la temporada.
  • Campos usados para calcular la puntuación.
  • Competiciones disponibles en la API y su respectivo identifcador.

In [244]:
API_PREFIX = 'https://api.sofascore.com/api/v1'
league_id = "8" # Identificador de Laliga
season_id = "61643"


LEAGUE_STATS_FIELDS = [
    'goals', 'yellowCards', 'redCards', 'groundDuelsWon', 'groundDuelsWonPercentage',
    'aerialDuelsWon', 'aerialDuelsWonPercentage', 'successfulDribbles',
    'successfulDribblesPercentage', 'tackles', 'assists', 'accuratePassesPercentage',
    'totalDuelsWon', 'totalDuelsWonPercentage', 'minutesPlayed', 'wasFouled', 'fouls',
    'dispossessed', 'possesionLost', 'appearances', 'started', 'saves', 'cleanSheets',
    'savedShotsFromInsideTheBox', 'savedShotsFromOutsideTheBox',
    'goalsConcededInsideTheBox', 'goalsConcededOutsideTheBox', 'highClaims',
    'successfulRunsOut', 'punches', 'runsOut', 'accurateFinalThirdPasses',
    'bigChancesCreated', 'accuratePasses', 'keyPasses', 'accurateCrosses',
    'accurateCrossesPercentage', 'accurateLongBalls', 'accurateLongBallsPercentage',
    'interceptions', 'clearances', 'dribbledPast', 'bigChancesMissed', 'totalShots',
    'shotsOnTarget', 'blockedShots', 'goalConversionPercentage', 'hitWoodwork', 'offsides',
    'expectedGoals', 'errorLeadToGoal', 'errorLeadToShot', 'passToAssist'
]
concatenated_fields = '%2C'.join(LEAGUE_STATS_FIELDS)

comps = {
    # European continental club comps
    'Champions League': 7, 'Europa League': 679, 'Europa Conference League': 17015,
    # European domestic leagues
    'EPL': 17, 'La Liga': 8, 'Bundesliga': 35, 'Serie A': 23, 'Ligue 1': 34,
    # South America
    'Argentina Liga Profesional': 155, 'Argentina Copa de la Liga Profesional': 13475,
    'Liga 1 Peru': 406, "Copa Libertadores": 384,
    # USA
    'MLS': 242, 'USL Championship': 13363, 'USL1': 13362, 'USL2': 13546,
    # Middle East
    "Saudi Pro League": 955,
    # Men's international comps
    'World Cup': 16, 'Euros': 1, 'Gold Cup': 140,
    # Women's international comps
    "Women's World Cup": 290
}

Es momento de empezar a pensar que vamos a necesitar para analizar el rendimiento de todos los jugadores. Para tener una visión general del funcionamiento del algorítmo de SofaScore voy a tener en cuenta los siguientes valores. Esta lista está ordenada según el peso que pienso que puede llegar a tener cada campo en la puntuación individual de los jugadores.

  1. Rendimiento individual del jugador en cada partido.
  2. Minutos jugados por cada jugador en cada partido.
    • Solo tendremos en cuenta los jugadores que hayan jugado más de 90 min en el partido evaluado.
  3. Rendimiento grupal del equipo del jugador en ese partido.
    • Parece ser que si un equipo gana el partido, dicho jugador recibirá mas puntos.

Empezaremos scrapeando los datos de todos los partidos de esta temporada, para después guardarlos en nuestra base de datos. Como veremos en unos pasos, la mayoría de los datos recibidos por SofaScore son irrelevantes, así que será mejor modificar está colección y generar una colección refinada con los datos más relevantes.

Scrapear datos de todos los partidos.¶

Todas las funciones presentadas en este trabajo para scrapear datos de la API tienen una fuerte influencia en el código de oseymour, pero además he hecho alguna modificación para quitar las partes innecesarias para mi proyecto y añadir otras partes.

La siguientes funciones están dedicadas a crear la reuqest y extraer de forma correcta los datos.

In [245]:
@request(output=None, create_error_logs=False)
def botasaurus_get(req: Request, url: str) -> Response:
    """ General purpose "get" function that uses Botasaurus.
    
    Parameters
    ----------
    req : botasaurus.request.Request
        The request object provided by the botasaurus decorator
    url : str
        The URL to request
        
    Returns
    -------
    botasaurus_requests.response.Response
        The response from the request
    """
    if not isinstance(url, str):
        raise TypeError('`url` must be a string.')
    resp = req.get(url)
    return resp
In [246]:
def get_valid_seasons(league: str) -> dict:
    """ Returns the valid seasons and their IDs for the given league

    Parameters
    ----------
    league : str
        League to get valid seasons for. See comps ScraperFC.Sofascore for valid leagues.
    
    Returns
    -------
    seasons : dict
        Available seasons for the league. {season string: season ID, ...}
    """
        
    response = botasaurus_get(f'{API_PREFIX}/unique-tournament/{comps[league]}/seasons/')
    seasons = dict([(x['year'], x['id']) for x in response.json()['seasons']])
    return seasons
In [247]:
def get_match_dicts(year: str, league:str) -> Sequence[dict]:
    """ Returns the matches from the Sofascore API for a given league season.

    Parameters
    ----------
    year : str
        See the :ref:`sofascore_year` `year` parameter docs for details.
    league : str
        League to get valid seasons for. See comps ScraperFC.Sofascore for valid leagues.
    
    Returns
    -------
    matches : list of dict
        Each element being a single game of the competition
    """
    valid_seasons = get_valid_seasons(league)

    matches = list()
    i = 0
    while 1:
        response = botasaurus_get(
            f'{API_PREFIX}/unique-tournament/{comps[league]}/season/{valid_seasons[year]}/' +
            f'events/last/{i}'
        )
        if response.status_code != 200:
            break
        matches += response.json()['events']
        i += 1

    return matches
In [248]:
partidos_en_temporada = get_match_dicts("24/25", "La Liga")

print(json.dumps(partidos_en_temporada, indent=4))
[
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "GgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 5,
            "display": 5,
            "period1": 3,
            "period2": 2,
            "normaltime": 5
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 2,
            "currentPeriodStartTimestamp": 1733000959
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "awayScore.period2",
                "awayScore.normaltime"
            ],
            "changeTimestamp": 1733003837
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437720,
        "startTimestamp": 1732996800,
        "slug": "atletico-madrid-real-valladolid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "ugbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1733061749
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733065123
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437727,
        "startTimestamp": 1733058000,
        "slug": "girona-fc-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "Egbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 2,
            "period2": 0,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1733070483
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733073500
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437724,
        "startTimestamp": 1733066100,
        "slug": "getafe-real-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "tgbsAgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1733078008
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733081032
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437717,
        "startTimestamp": 1733074200,
        "slug": "athletic-club-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "qgbszgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 2,
            "period2": 0,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1733087273
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733090161
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437722,
        "startTimestamp": 1733083200,
        "slug": "real-sociedad-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "vgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1733173338
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733176352
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437729,
        "startTimestamp": 1733169600,
        "slug": "sevilla-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 19
        },
        "customId": "rgbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 5,
            "display": 5,
            "period1": 1,
            "period2": 4,
            "normaltime": 5
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1733252636
        },
        "changes": {
            "changes": [
                "time.injuryTime2"
            ],
            "changeTimestamp": 1733255538
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437816,
        "startTimestamp": 1733248800,
        "slug": "mallorca-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 19
        },
        "customId": "AgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1733346300
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733349370
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437801,
        "startTimestamp": 1733342400,
        "slug": "real-madrid-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "wgbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1733519087
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733522229
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437735,
        "awayRedCards": 1,
        "startTimestamp": 1733515200,
        "slug": "mallorca-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "GgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1733580402
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733583662
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437740,
        "startTimestamp": 1733576400,
        "slug": "las-palmas-real-valladolid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "qgbsrgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1733588486
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733591774
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437745,
        "startTimestamp": 1733584500,
        "slug": "barcelona-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "tgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1733596571
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733599663
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437747,
        "startTimestamp": 1733592600,
        "slug": "valencia-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "EgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1733605451
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733608402
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437738,
        "startTimestamp": 1733601600,
        "slug": "girona-fc-real-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "zgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1733666631
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733669699
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437742,
        "startTimestamp": 1733662800,
        "slug": "leganes-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "ugbsAgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1733674857
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733677925
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437731,
        "startTimestamp": 1733670900,
        "slug": "athletic-club-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "vgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 8,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1733683232
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733686385
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437750,
        "startTimestamp": 1733679000,
        "slug": "deportivo-alaves-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "IgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 1,
            "period2": 3,
            "normaltime": 4
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1733692161
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733695359
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437733,
        "startTimestamp": 1733688000,
        "slug": "atletico-madrid-sevilla",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 16
        },
        "customId": "ogbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1733778144
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1733781088
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437752,
        "startTimestamp": 1733774400,
        "slug": "getafe-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "DgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1734124141
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734127334
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437773,
        "homeRedCards": 1,
        "startTimestamp": 1734120000,
        "slug": "real-valladolid-valencia",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "ogbsvgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1734185073
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734188219
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437764,
        "startTimestamp": 1734181200,
        "slug": "osasuna-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "BgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1734193338
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734196350
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437771,
        "homeRedCards": 1,
        "startTimestamp": 1734189300,
        "slug": "girona-fc-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "wgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1734201418
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734204606
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437769,
        "startTimestamp": 1734197400,
        "slug": "sevilla-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "tgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1734210331
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734213494
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437759,
        "startTimestamp": 1734206400,
        "slug": "real-madrid-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "Lgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1734271602
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734274548
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437755,
        "startTimestamp": 1734267600,
        "slug": "getafe-atletico-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "AgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1734279437
        },
        "changes": {
            "changes": [
                "time.injuryTime2",
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734282394
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437762,
        "startTimestamp": 1734275700,
        "slug": "deportivo-alaves-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "zgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1734287749
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734290770
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437776,
        "startTimestamp": 1734283800,
        "slug": "las-palmas-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "qgbsugb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1734287690
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734290859
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437767,
        "awayRedCards": 1,
        "startTimestamp": 1734283800,
        "slug": "villarreal-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 17
        },
        "customId": "rgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1734297006
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734300020
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437757,
        "startTimestamp": 1734292800,
        "slug": "leganes-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "ogbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1734557726
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734560764
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 13128822,
        "startTimestamp": 1734553800,
        "slug": "valencia-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "tgbsugb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1734557829
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734560872
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 13096804,
        "homeRedCards": 1,
        "startTimestamp": 1734553800,
        "slug": "villarreal-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "DgbsEgb",
        "status": {
            "code": 60,
            "description": "Postponed",
            "type": "postponed"
        },
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {},
        "awayScore": {},
        "time": {},
        "changes": {
            "changeTimestamp": 0
        },
        "hasGlobalHighlights": false,
        "hasEventPlayerStatistics": false,
        "hasEventPlayerHeatMap": false,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437653,
        "startTimestamp": 1730577600,
        "slug": "real-madrid-valencia",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "LgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1730642925
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730646184
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437637,
        "startTimestamp": 1730638800,
        "slug": "las-palmas-atletico-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "ogbsrgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 3,
            "period2": 0,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1730651161
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730654066
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437658,
        "startTimestamp": 1730646900,
        "slug": "barcelona-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "zgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1730659026
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730662081
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437655,
        "startTimestamp": 1730655000,
        "slug": "sevilla-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "qgbsAgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1730667750
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730670755
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437634,
        "startTimestamp": 1730664000,
        "slug": "athletic-club-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "wgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1730754466
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730757421
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437639,
        "awayRedCards": 1,
        "startTimestamp": 1730750400,
        "slug": "getafe-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "tgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1731099992
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1731102992
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437680,
        "startTimestamp": 1731096000,
        "slug": "las-palmas-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "vgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 2,
            "period2": 2,
            "normaltime": 4
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1731161334
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1731164246
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437678,
        "startTimestamp": 1731157200,
        "slug": "real-madrid-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "ugbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1731169421
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1731172489
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437682,
        "startTimestamp": 1731165300,
        "slug": "deportivo-alaves-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "ogbsDgb",
        "status": {
            "code": 60,
            "description": "Postponed",
            "type": "postponed"
        },
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {},
        "awayScore": {},
        "time": {},
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734552483
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": false,
        "hasEventPlayerHeatMap": false,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437668,
        "startTimestamp": 1731173400,
        "slug": "valencia-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "IgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1731186042
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1731189113
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437666,
        "awayRedCards": 1,
        "startTimestamp": 1731182400,
        "slug": "leganes-sevilla",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "qgbswgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1731247585
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1731250717
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437660,
        "startTimestamp": 1731243600,
        "slug": "celta-vigo-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "BgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1731255589
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1731258579
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437673,
        "startTimestamp": 1731251700,
        "slug": "atletico-madrid-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "AgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1731263837
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "time.injuryTime1",
                "awayScore.period2",
                "awayScore.normaltime"
            ],
            "changeTimestamp": 1731266933
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437670,
        "startTimestamp": 1731259800,
        "slug": "real-valladolid-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "jhbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1731263785
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1731266746
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437662,
        "startTimestamp": 1731259800,
        "slug": "girona-fc-getafe",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 13
        },
        "customId": "rgbszgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1731272819
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1731275823
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437675,
        "startTimestamp": 1731268800,
        "slug": "real-sociedad-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "Ggbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1732309616
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732312746
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437686,
        "startTimestamp": 1732305600,
        "slug": "getafe-real-valladolid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "qgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 1,
            "period2": 3,
            "normaltime": 4
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1732371192
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732374397
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437698,
        "startTimestamp": 1732366800,
        "slug": "valencia-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "LgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1732378993
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732382060
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437703,
        "startTimestamp": 1732374900,
        "slug": "deportivo-alaves-atletico-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "BgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 0,
            "period2": 3,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 10,
            "currentPeriodStartTimestamp": 1732386914
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732390270
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437691,
        "awayRedCards": 1,
        "startTimestamp": 1732383000,
        "slug": "las-palmas-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "ogbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 4,
            "period2": 0,
            "normaltime": 4
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 2,
            "currentPeriodStartTimestamp": 1732386999
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732389828
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437705,
        "startTimestamp": 1732383000,
        "slug": "girona-fc-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "rgbswgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1732395910
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732398927
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437696,
        "awayRedCards": 1,
        "startTimestamp": 1732392000,
        "slug": "celta-vigo-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "ugbsvgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 2,
            "period2": 0,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1732457310
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "awayScore.period2",
                "awayScore.normaltime"
            ],
            "changeTimestamp": 1732460384
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437688,
        "startTimestamp": 1732453200,
        "slug": "osasuna-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "tgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1732465214
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732468105
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437700,
        "awayRedCards": 1,
        "startTimestamp": 1732461300,
        "slug": "sevilla-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "EgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1732473148
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732476093
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437693,
        "startTimestamp": 1732469400,
        "slug": "leganes-real-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 14
        },
        "customId": "zgbsAgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1732482276
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732485223
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437685,
        "startTimestamp": 1732478400,
        "slug": "athletic-club-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "BgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1732914695
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732917644
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437710,
        "startTimestamp": 1732910400,
        "slug": "valencia-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "rgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1732975782
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732979004
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437708,
        "startTimestamp": 1732971600,
        "slug": "las-palmas-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "VgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1732983490
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732986569
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437712,
        "startTimestamp": 1732979700,
        "slug": "deportivo-alaves-leganes",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 15
        },
        "customId": "ogbswgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1732991800
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1732994800
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437715,
        "startTimestamp": 1732987800,
        "slug": "celta-vigo-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "wgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1728149869
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728153010
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437832,
        "awayRedCards": 2,
        "startTimestamp": 1728145800,
        "slug": "las-palmas-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "ugbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1728158859
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728161984
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437813,
        "startTimestamp": 1728154800,
        "slug": "real-madrid-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "AgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1728220082
        },
        "changes": {
            "changes": [
                "time.injuryTime1"
            ],
            "changeTimestamp": 1728267452
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437824,
        "awayRedCards": 1,
        "startTimestamp": 1728216000,
        "slug": "girona-fc-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "rgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 3,
            "period2": 0,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1728228058
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728230945
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437815,
        "startTimestamp": 1728224100,
        "slug": "deportivo-alaves-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "qgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1728236071
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728239223
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437828,
        "homeRedCards": 1,
        "startTimestamp": 1728232200,
        "slug": "sevilla-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "zgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1728244987
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728247989
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437826,
        "startTimestamp": 1728241200,
        "slug": "atletico-madrid-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "GgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1729281783
        },
        "changes": {
            "changes": [
                "cardsCode",
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1729285095
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437849,
        "homeRedCards": 1,
        "startTimestamp": 1729278000,
        "slug": "deportivo-alaves-real-valladolid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "ogbsAgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 3,
            "period2": 1,
            "normaltime": 4
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1729343242
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "awayScore.period2",
                "awayScore.normaltime"
            ],
            "changeTimestamp": 1729346138
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437855,
        "startTimestamp": 1729339200,
        "slug": "athletic-club-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "qgbsvgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1729351164
        },
        "changes": {
            "changes": [
                "time.injuryTime2"
            ],
            "changeTimestamp": 1729354771
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437851,
        "awayRedCards": 1,
        "startTimestamp": 1729347300,
        "slug": "osasuna-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "zgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1729359308
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729362314
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437843,
        "startTimestamp": 1729355400,
        "slug": "girona-fc-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "wgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1729368266
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729371292
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437842,
        "startTimestamp": 1729364400,
        "slug": "real-madrid-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "tgbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1729429527
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729432638
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437847,
        "startTimestamp": 1729425600,
        "slug": "mallorca-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "LgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 0,
            "period2": 3,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1729437735
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1729441099
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437835,
        "startTimestamp": 1729433700,
        "slug": "leganes-atletico-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "ugbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1729445611
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729448626
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437852,
        "startTimestamp": 1729441800,
        "slug": "getafe-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "rgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 5,
            "display": 5,
            "period1": 3,
            "period2": 2,
            "normaltime": 5
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1729454963
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729457912
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437839,
        "startTimestamp": 1729450800,
        "slug": "sevilla-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 10
        },
        "customId": "DgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1729541010
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729544262
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437854,
        "homeRedCards": 1,
        "startTimestamp": 1729537200,
        "slug": "las-palmas-valencia",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "ogbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 2,
            "period2": 0,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 11,
            "currentPeriodStartTimestamp": 1729886682
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729890088
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437609,
        "startTimestamp": 1729882800,
        "slug": "sevilla-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "ugbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1729947827
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729950842
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437627,
        "startTimestamp": 1729944000,
        "slug": "real-valladolid-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "tgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1729956079
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729959158
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437630,
        "homeRedCards": 1,
        "startTimestamp": 1729952100,
        "slug": "deportivo-alaves-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "CGcsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1729964247
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729967413
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437620,
        "startTimestamp": 1729960200,
        "slug": "girona-fc-las-palmas",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "rgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 4,
            "display": 4,
            "period1": 0,
            "period2": 4,
            "normaltime": 4
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 2,
            "currentPeriodStartTimestamp": 1729973105
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1729975927
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437616,
        "startTimestamp": 1729969200,
        "slug": "real-madrid-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "wgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 0,
            "period2": 3,
            "normaltime": 3
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1730037715
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730040853
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437618,
        "startTimestamp": 1730034000,
        "slug": "leganes-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "Dgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1730045966
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730049705
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437607,
        "startTimestamp": 1730042100,
        "slug": "getafe-valencia",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "qgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1730054034
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730057158
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437613,
        "startTimestamp": 1730050200,
        "slug": "atletico-madrid-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "vgbszgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 2,
            "period2": 0,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1730063280
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730066295
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437625,
        "startTimestamp": 1730059200,
        "slug": "real-sociedad-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 11
        },
        "customId": "AgbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1730149728
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730152748
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437611,
        "homeRedCards": 1,
        "startTimestamp": 1730145600,
        "slug": "mallorca-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "BgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1730495028
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730498034
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437646,
        "startTimestamp": 1730491200,
        "slug": "deportivo-alaves-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "vgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1730556422
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730559415
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437644,
        "startTimestamp": 1730552400,
        "slug": "real-valladolid-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "VgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 2,
            "period2": 2,
            "normaltime": 4
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1730564517
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1730567731
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437641,
        "startTimestamp": 1730560500,
        "slug": "girona-fc-leganes",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 12
        },
        "customId": "tgbsugb",
        "status": {
            "code": 60,
            "description": "Postponed",
            "type": "postponed"
        },
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {},
        "awayScore": {},
        "time": {},
        "changes": {
            "changes": [
                "cardsCode",
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1734549394
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": false,
        "hasEventPlayerHeatMap": false,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437651,
        "startTimestamp": 1730568600,
        "slug": "villarreal-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "vgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 7,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1726932252
        },
        "changes": {
            "changes": [
                "time.injuryTime2"
            ],
            "changeTimestamp": 1726935348
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437753,
        "startTimestamp": 1726928100,
        "slug": "las-palmas-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "DgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1726939988
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726943057
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437748,
        "startTimestamp": 1726936200,
        "slug": "girona-fc-valencia",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "ogbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 0,
            "period2": 4,
            "normaltime": 4
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1726949191
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726952128
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437756,
        "startTimestamp": 1726945200,
        "slug": "real-madrid-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "Vgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1727010372
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727013422
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437739,
        "startTimestamp": 1727006400,
        "slug": "getafe-leganes",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "wgbsAgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1727018497
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727021390
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437734,
        "startTimestamp": 1727014500,
        "slug": "athletic-club-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "rgbsugb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 5,
            "display": 5,
            "period1": 2,
            "period2": 3,
            "normaltime": 5
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1727026667
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727029617
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437746,
        "startTimestamp": 1727022600,
        "slug": "villarreal-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "tgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1727035577
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727038477
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437744,
        "startTimestamp": 1727031600,
        "slug": "atletico-madrid-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "qgbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1727122006
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "awayScore.period2",
                "awayScore.normaltime"
            ],
            "changeTimestamp": 1727125037
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437736,
        "startTimestamp": 1727118000,
        "slug": "mallorca-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "vgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1727201137
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727204052
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437779,
        "startTimestamp": 1727197200,
        "slug": "valencia-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "GgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1727201092
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727204227
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437766,
        "homeRedCards": 1,
        "startTimestamp": 1727197200,
        "slug": "sevilla-real-valladolid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "EgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1727208335
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727211437
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437782,
        "startTimestamp": 1727204400,
        "slug": "deportivo-alaves-real-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "tgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1727287588
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727290625
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437761,
        "startTimestamp": 1727283600,
        "slug": "girona-fc-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "rgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1727294644
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727297651
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437758,
        "startTimestamp": 1727290800,
        "slug": "getafe-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "qgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1727374103
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727376995
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437777,
        "startTimestamp": 1727370000,
        "slug": "las-palmas-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "ogbsugb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 8,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1727374447
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727377492
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437768,
        "startTimestamp": 1727370000,
        "slug": "villarreal-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "wgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1727381025
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727383975
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437774,
        "startTimestamp": 1727377200,
        "slug": "atletico-madrid-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "BgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1727467501
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727470603
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437798,
        "startTimestamp": 1727463600,
        "slug": "real-valladolid-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "jhbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1727528904
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727531921
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437803,
        "startTimestamp": 1727524800,
        "slug": "deportivo-alaves-getafe",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "tgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1727536809
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727539785
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437805,
        "startTimestamp": 1727532900,
        "slug": "leganes-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "zgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1727545039
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1727547982
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437792,
        "startTimestamp": 1727541000,
        "slug": "valencia-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "rgbsvgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 2,
            "period2": 2,
            "normaltime": 4
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1727553864
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727557003
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437795,
        "startTimestamp": 1727550000,
        "slug": "osasuna-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "wgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1727615057
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727618070
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437789,
        "startTimestamp": 1727611200,
        "slug": "girona-fc-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "AgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1727623182
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727626360
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437784,
        "homeRedCards": 1,
        "startTimestamp": 1727619300,
        "slug": "sevilla-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "ogbsqgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1727631393
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1727634586
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437808,
        "startTimestamp": 1727627400,
        "slug": "real-betis-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "EgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1727640217
        },
        "changes": {
            "changes": [
                "cardsCode",
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1727644700
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437787,
        "homeRedCards": 1,
        "startTimestamp": 1727636400,
        "slug": "atletico-madrid-real-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 8
        },
        "customId": "ugbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1727726688
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1727729994
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437800,
        "startTimestamp": 1727722800,
        "slug": "las-palmas-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "DgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1728072201
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728075091
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437818,
        "startTimestamp": 1728068400,
        "slug": "leganes-valencia",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "ogbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 11,
            "currentPeriodStartTimestamp": 1728133490
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728136867
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437820,
        "startTimestamp": 1728129600,
        "slug": "mallorca-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "vgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1728141638
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728144662
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437810,
        "startTimestamp": 1728137700,
        "slug": "getafe-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 9
        },
        "customId": "tgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1728149528
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1728152597
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437833,
        "startTimestamp": 1728145800,
        "slug": "real-valladolid-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "AgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 3,
            "currentPeriodStartTimestamp": 1724868230
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724871181
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437659,
        "startTimestamp": 1724864400,
        "slug": "valencia-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "zgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1724877729
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724880881
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437676,
        "homeRedCards": 1,
        "startTimestamp": 1724873400,
        "slug": "deportivo-alaves-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "ogbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1724877412
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724880616
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437681,
        "startTimestamp": 1724873400,
        "slug": "atletico-madrid-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "vgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 1,
            "period2": 3,
            "normaltime": 4
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1724954692
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724957760
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437664,
        "startTimestamp": 1724950800,
        "slug": "girona-fc-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "EgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1724963806
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724966810
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437669,
        "startTimestamp": 1724959800,
        "slug": "las-palmas-real-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "rgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 7,
            "display": 7,
            "period1": 3,
            "period2": 4,
            "normaltime": 7
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 2,
            "currentPeriodStartTimestamp": 1725120376
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725123210
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437687,
        "startTimestamp": 1725116400,
        "slug": "real-valladolid-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "AgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1725127362
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725130492
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437684,
        "startTimestamp": 1725123600,
        "slug": "atletico-madrid-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "ogbstgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1725128612
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725131952
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437699,
        "startTimestamp": 1725124500,
        "slug": "rayo-vallecano-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "BgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1725136412
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725139363
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437697,
        "startTimestamp": 1725132600,
        "slug": "leganes-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "ugbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1725136711
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725139703
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437692,
        "awayRedCards": 1,
        "startTimestamp": 1725132600,
        "slug": "valencia-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "KhbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1725206690
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725209702
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437694,
        "startTimestamp": 1725202800,
        "slug": "las-palmas-deportivo-alaves",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "vgbswgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1725206742
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725209753
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437704,
        "awayRedCards": 1,
        "startTimestamp": 1725202800,
        "slug": "celta-vigo-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "IgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1725214037
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725217171
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437706,
        "startTimestamp": 1725210000,
        "slug": "girona-fc-sevilla",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "zgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1725215191
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725218336
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437690,
        "startTimestamp": 1725210900,
        "slug": "getafe-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 4
        },
        "customId": "qgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1725223020
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1725226091
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437702,
        "startTimestamp": 1725219000,
        "slug": "real-madrid-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "qgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1726258112
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726261244
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437711,
        "startTimestamp": 1726254000,
        "slug": "leganes-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "ugbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1726319151
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726322281
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437716,
        "homeRedCards": 1,
        "startTimestamp": 1726315200,
        "slug": "mallorca-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "ogbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1726327196
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726330333
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437730,
        "startTimestamp": 1726323300,
        "slug": "deportivo-alaves-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "Igbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1726335516
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726339072
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437723,
        "homeRedCards": 1,
        "startTimestamp": 1726331400,
        "slug": "getafe-sevilla",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "zgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1726344254
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726347208
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437728,
        "startTimestamp": 1726340400,
        "slug": "real-madrid-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "wgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1726405805
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726408936
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437714,
        "awayRedCards": 1,
        "startTimestamp": 1726401600,
        "slug": "real-valladolid-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "rgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 4,
            "display": 4,
            "period1": 2,
            "period2": 2,
            "normaltime": 4
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1726413806
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726416880
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437721,
        "awayRedCards": 1,
        "startTimestamp": 1726409700,
        "slug": "girona-fc-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "AgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1726421910
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726424866
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437718,
        "awayRedCards": 1,
        "startTimestamp": 1726417800,
        "slug": "las-palmas-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "DgbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1726430777
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726433745
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437709,
        "startTimestamp": 1726426800,
        "slug": "atletico-madrid-valencia",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 5
        },
        "customId": "tgbsvgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 0,
            "period2": 3,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1726517032
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1726520185
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437726,
        "startTimestamp": 1726513200,
        "slug": "osasuna-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "zgbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1726596303
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726599250
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437763,
        "startTimestamp": 1726592400,
        "slug": "mallorca-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "qgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1726682854
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726686101
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12778688,
        "startTimestamp": 1726678800,
        "slug": "getafe-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 7
        },
        "customId": "AgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1726769032
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726771985
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437772,
        "startTimestamp": 1726765200,
        "slug": "leganes-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "IgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1726862800
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726865814
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437741,
        "startTimestamp": 1726858800,
        "slug": "deportivo-alaves-sevilla",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 6
        },
        "customId": "zgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1726923926
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1726927273
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437751,
        "startTimestamp": 1726920000,
        "slug": "real-valladolid-real-sociedad",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "Agbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "awayTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 7,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1723745352
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1723748364
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437604,
        "startTimestamp": 1723741200,
        "slug": "getafe-athletic-club",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "qgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1723754151
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1723757226
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437605,
        "startTimestamp": 1723750200,
        "slug": "girona-fc-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "wgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 8,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1723831876
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1723835013
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437617,
        "startTimestamp": 1723827600,
        "slug": "deportivo-alaves-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "IgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1723840616
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1723843759
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437608,
        "startTimestamp": 1723836600,
        "slug": "las-palmas-sevilla",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "vgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1723917918
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1723920933
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437619,
        "startTimestamp": 1723914000,
        "slug": "leganes-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "rgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1723927249
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1723930413
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437612,
        "startTimestamp": 1723923000,
        "slug": "valencia-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "tgbszgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 7,
            "currentPeriodStartTimestamp": 1724004356
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1724007610
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437615,
        "startTimestamp": 1724000400,
        "slug": "real-sociedad-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "BgbsEgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1724013441
        },
        "changes": {
            "changes": [
                "cardsCode",
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724016576
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437606,
        "awayRedCards": 1,
        "startTimestamp": 1724009400,
        "slug": "real-madrid-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "ogbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1724090867
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724093982
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437624,
        "startTimestamp": 1724086800,
        "slug": "real-valladolid-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 1
        },
        "customId": "ugbsLgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 2,
            "period2": 0,
            "normaltime": 2
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 2,
            "period2": 0,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1724099873
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724102876
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437610,
        "startTimestamp": 1724095800,
        "slug": "atletico-madrid-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "wgbsDgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Valencia",
            "slug": "valencia",
            "shortName": "Valencia",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 337284,
            "nameCode": "VCF",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2828,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
                    "hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 5,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1724436634
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724439700
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437631,
        "startTimestamp": 1724432400,
        "slug": "valencia-celta-vigo",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "ugbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 9,
            "currentPeriodStartTimestamp": 1724445906
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724449210
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437642,
        "startTimestamp": 1724441400,
        "slug": "sevilla-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "vgbsBgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Osasuna",
            "slug": "osasuna",
            "shortName": "Osasuna",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 211861,
            "nameCode": "OSA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2820,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#14213d",
                "text": "#14213d"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
                    "hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1724515722
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724518825
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437656,
        "startTimestamp": 1724511600,
        "slug": "mallorca-osasuna",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "rgbsAgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Athletic Club",
            "slug": "athletic-club",
            "shortName": "Athletic Club",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 487113,
            "nameCode": "ATH",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2825,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#aa0000",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
                    "hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 1,
            "period2": 1,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 6,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1724523039
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724526130
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437652,
        "startTimestamp": 1724518800,
        "slug": "athletic-club-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "tgbsjhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Getafe",
            "slug": "getafe",
            "shortName": "Getafe",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 206734,
            "nameCode": "GET",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2859,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#00369e",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
                    "hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
                }
            }
        },
        "awayTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1724531751
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724534825
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437636,
        "startTimestamp": 1724527800,
        "slug": "getafe-rayo-vallecano",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "ogbszgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Espanyol",
            "slug": "espanyol",
            "shortName": "Espanyol",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 129614,
            "nameCode": "ESP",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#1369d2",
                "text": "#1369d2"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
                    "hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Real Sociedad",
            "slug": "real-sociedad",
            "shortName": "Real Sociedad",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 491454,
            "nameCode": "RSO",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2824,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#0077c7",
                "text": "#0077c7"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1724531805
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724535039
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437650,
        "startTimestamp": 1724527800,
        "slug": "real-sociedad-espanyol",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "EgbsGgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Real Madrid",
            "slug": "real-madrid",
            "shortName": "Real Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 4266140,
            "nameCode": "RMA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2829,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#004996",
                "text": "#004996"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 0,
            "period2": 3,
            "normaltime": 3
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 6,
            "currentPeriodStartTimestamp": 1724602133
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1724605245
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437638,
        "startTimestamp": 1724598000,
        "slug": "real-valladolid-real-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "VgbsCGc",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Las Palmas",
            "slug": "las-palmas",
            "shortName": "Las Palmas",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 151622,
            "nameCode": "LPA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 6577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#e8f541",
                "secondary": "#f3f845",
                "text": "#f3f845"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
                    "hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
                }
            }
        },
        "homeScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "awayScore": {
            "current": 1,
            "display": 1,
            "period1": 0,
            "period2": 1,
            "normaltime": 1
        },
        "time": {
            "injuryTime1": 3,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1724609143
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724612425
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437647,
        "startTimestamp": 1724605200,
        "slug": "las-palmas-leganes",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "qgbsKhb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Deportivo Alav\u00e9s",
            "slug": "deportivo-alaves",
            "shortName": "Alav\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 152175,
            "nameCode": "ALA",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2885,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#0232a0",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
                    "ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
                    "hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
                    "hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
                }
            }
        },
        "awayTeam": {
            "name": "Real Betis",
            "slug": "real-betis",
            "shortName": "Real Betis",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 401610,
            "nameCode": "RBB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#006633",
                "text": "#006633"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
                    "ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
                    "hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062a\u064a\u0633",
                    "hi": "\u092c\u0947\u091f\u093f\u0938"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 0,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1724609786
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724612741
        },
        "hasGlobalHighlights": false,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437645,
        "homeRedCards": 1,
        "startTimestamp": 1724606100,
        "slug": "deportivo-alaves-real-betis",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 2
        },
        "customId": "LgbsoKj",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Atl\u00e9tico Madrid",
            "slug": "atletico-madrid",
            "shortName": "Atl. Madrid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 1369466,
            "nameCode": "ATM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#c40000",
                "text": "#c40000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
                    "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
                    "hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Girona FC",
            "slug": "girona-fc",
            "shortName": "Girona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 592761,
            "nameCode": "GIR",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 24264,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ff0000",
                "text": "#ff0000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
                    "ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
                    "hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 3,
            "display": 3,
            "period1": 1,
            "period2": 2,
            "normaltime": 3
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1724618359
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1724621391
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437628,
        "startTimestamp": 1724614200,
        "slug": "girona-fc-atletico-madrid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "ugbswgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 1,
        "homeTeam": {
            "name": "Villarreal",
            "slug": "villarreal",
            "shortName": "Villarreal",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 435132,
            "nameCode": "VIL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2819,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffff00",
                "secondary": "#013765",
                "text": "#013765"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                },
                "shortNameTranslation": {
                    "ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
                    "hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
                }
            }
        },
        "awayTeam": {
            "name": "Celta Vigo",
            "slug": "celta-vigo",
            "shortName": "Celta",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 220159,
            "nameCode": "RCC",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2821,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#6cace4",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
                    "ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0644\u062a\u0627",
                    "hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
                }
            }
        },
        "homeScore": {
            "current": 4,
            "display": 4,
            "period1": 1,
            "period2": 3,
            "normaltime": 4
        },
        "awayScore": {
            "current": 3,
            "display": 3,
            "period1": 2,
            "period2": 1,
            "normaltime": 3
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 8,
            "currentPeriodStartTimestamp": 1724704513
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type",
                "homeScore.period2",
                "homeScore.normaltime"
            ],
            "changeTimestamp": 1724707876
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437674,
        "startTimestamp": 1724700600,
        "slug": "celta-vigo-villarreal",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "BgbsIgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Mallorca",
            "slug": "mallorca",
            "shortName": "Mallorca",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 207290,
            "nameCode": "MLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2826,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#cc0000",
                "secondary": "#000000",
                "text": "#000000"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
                    "hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
                }
            }
        },
        "awayTeam": {
            "name": "Sevilla",
            "slug": "sevilla",
            "shortName": "Sevilla",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 577167,
            "nameCode": "SEV",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#cc1020",
                "text": "#cc1020"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
                    "hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 1,
            "injuryTime2": 4,
            "currentPeriodStartTimestamp": 1724781934
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724784916
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437667,
        "awayRedCards": 1,
        "startTimestamp": 1724778000,
        "slug": "sevilla-mallorca",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "rgbstgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 2,
        "homeTeam": {
            "name": "Rayo Vallecano",
            "slug": "rayo-vallecano",
            "shortName": "Rayo Vallecano",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 195949,
            "nameCode": "RVM",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2818,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#ffffff",
                "text": "#ffffff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
                    "hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
                }
            }
        },
        "awayTeam": {
            "name": "Barcelona",
            "slug": "barcelona",
            "shortName": "Barcelona",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 3474305,
            "nameCode": "FCB",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2817,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#154284",
                "secondary": "#9d1009",
                "text": "#9d1009"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
                    "hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
                }
            }
        },
        "homeScore": {
            "current": 1,
            "display": 1,
            "period1": 1,
            "period2": 0,
            "normaltime": 1
        },
        "awayScore": {
            "current": 2,
            "display": 2,
            "period1": 0,
            "period2": 2,
            "normaltime": 2
        },
        "time": {
            "injuryTime1": 4,
            "injuryTime2": 10,
            "currentPeriodStartTimestamp": 1724790976
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724794381
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437672,
        "startTimestamp": 1724787000,
        "slug": "rayo-vallecano-barcelona",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    },
    {
        "tournament": {
            "name": "LaLiga",
            "slug": "laliga",
            "category": {
                "name": "Spain",
                "slug": "spain",
                "sport": {
                    "name": "Football",
                    "slug": "football",
                    "id": 1
                },
                "id": 32,
                "country": {
                    "alpha2": "ES",
                    "alpha3": "ESP",
                    "name": "Spain",
                    "slug": "spain"
                },
                "flag": "spain",
                "alpha2": "ES"
            },
            "uniqueTournament": {
                "name": "LaLiga",
                "slug": "laliga",
                "primaryColorHex": "#2f4a89",
                "secondaryColorHex": "#f4a32e",
                "category": {
                    "name": "Spain",
                    "slug": "spain",
                    "sport": {
                        "name": "Football",
                        "slug": "football",
                        "id": 1
                    },
                    "id": 32,
                    "country": {
                        "alpha2": "ES",
                        "alpha3": "ESP",
                        "name": "Spain",
                        "slug": "spain"
                    },
                    "flag": "spain",
                    "alpha2": "ES"
                },
                "userCount": 924118,
                "hasPerformanceGraphFeature": true,
                "id": 8,
                "country": {},
                "hasEventPlayerStatistics": true,
                "displayInverseHomeAwayTeams": false,
                "fieldTranslations": {
                    "nameTranslation": {
                        "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                        "hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
                    },
                    "shortNameTranslation": {}
                }
            },
            "priority": 616,
            "isGroup": false,
            "isLive": false,
            "id": 36,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
                    "hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
                },
                "shortNameTranslation": {}
            }
        },
        "season": {
            "name": "LaLiga 24/25",
            "year": "24/25",
            "editor": false,
            "id": 61643
        },
        "roundInfo": {
            "round": 3
        },
        "customId": "GgbsVgb",
        "status": {
            "code": 100,
            "description": "Ended",
            "type": "finished"
        },
        "winnerCode": 3,
        "homeTeam": {
            "name": "Real Valladolid",
            "slug": "real-valladolid",
            "shortName": "Real Valladolid",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 102338,
            "nameCode": "VLL",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2831,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#663399",
                "text": "#663399"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
                    "ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
                    "hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
                }
            }
        },
        "awayTeam": {
            "name": "Legan\u00e9s",
            "slug": "leganes",
            "shortName": "Legan\u00e9s",
            "gender": "M",
            "sport": {
                "name": "Football",
                "slug": "football",
                "id": 1
            },
            "userCount": 69444,
            "nameCode": "LEG",
            "disabled": false,
            "national": false,
            "type": 0,
            "id": 2845,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "entityType": "team",
            "subTeams": [],
            "teamColors": {
                "primary": "#ffffff",
                "secondary": "#3300ff",
                "text": "#3300ff"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
                    "hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
                }
            }
        },
        "homeScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "awayScore": {
            "current": 0,
            "display": 0,
            "period1": 0,
            "period2": 0,
            "normaltime": 0
        },
        "time": {
            "injuryTime1": 2,
            "injuryTime2": 5,
            "currentPeriodStartTimestamp": 1724868461
        },
        "changes": {
            "changes": [
                "status.code",
                "status.description",
                "status.type"
            ],
            "changeTimestamp": 1724871486
        },
        "hasGlobalHighlights": true,
        "hasXg": true,
        "hasEventPlayerStatistics": true,
        "hasEventPlayerHeatMap": true,
        "detailId": 1,
        "crowdsourcingDataDisplayEnabled": false,
        "id": 12437679,
        "startTimestamp": 1724864400,
        "slug": "leganes-real-valladolid",
        "finalResultOnly": false,
        "feedLocked": true,
        "isEditor": false
    }
]

Acabamos de scrappear los datos básicos de todos los partidos de la temporada que se encuentran utilizando la API de SofaScore.

El siguiente paso es guardarlos como una nueva collección en una base de datos. Para ello primero tenemos que acceder a nuestra base de datos de MongoDB de manera síncrona y crear los nombres de nuestra base y de nuestra primera colección.

In [249]:
cliente = MongoClient()  # Cambia la URL si es necesario, yo la dejo así porque solo tengo una 
db = cliente["SofaScore"]  # Nombre de la base de datos
partidos_db = db["Partidos"]

Como yo estoy realizando muchas pruebas, no quiero estar constantemente añadiendo datos a mi base de datos, por ello solo utilizaré la siguiente función cuando haga falta. Como estamos hablando de datos que voy a guardar yo de manera provisional en mi base de datos y que además puedo volver a acceder facilmente a estos datos, no tengo problema en borrarlos y volver a añadirlos, en vez de buscar que datos son los mas nuevos, para después añadirlos.

In [250]:
def reescribir_mongo(collection, data, enabled):
    if not collection.count_documents({})>0:
        # Genero y añado todos los datos en la colección si estuviese vacía.
        collection.insert_many(data)
    elif enabled:
        # Borro toda la coleccion
        collection.delete_many({})
        # Incluyo los nuevos datos
        collection.insert_many(data)
In [251]:
reescribir_mongo(partidos_db, partidos_en_temporada, True)

Refinado de la colección de los datos de todos los partidos.¶

Un detalle a tener en cuenta en nuestro analísis es cuantos partidos tenemos guardados, para ello se podría hacer de dos maneras:

  1. Contando cuantos documentos tenemos en nuestra collección.
  2. Saber cuantas jornadas hay y multiplicar por partidos por jornada.
    • Una jornada es una ronda completa de partidos

      Empezaremos contando el número de documentos que tenemos en nuestra base de datos

In [252]:
partidos_db.count_documents({})
Out[252]:
174

Ahora vamos a contar cuantos partidos tenemos con la segunda forma:

In [253]:
resultado = partidos_db.aggregate([
    {
        "$group": {
            "_id": None,
            "ult_jornada": { "$max": "$roundInfo.round" } 
        }
    }
])

resultado = list(resultado)
print(f"La última jornada de nuestra base de datos es: jornada {resultado[0]["ult_jornada"]}")
La última jornada de nuestra base de datos es: jornada 19

Nos da la jornada 19 como última jornada, pero actualmente la última jornada disputada es la 17, ¿Como es esto posible?. En verdad, el resultado que nos da es correcto, puesto que para la jornada 19 se adelantaron 2 partidos, pero son únicamente 2 partidos, con lo que no tiene sentido lo siguiente:

$$numero\_partidos\_jornada * jornada\_19$$

Por ello vamos ha hacer que nuestro aggregate no tenga en cuenta los documentos con jornada: 19.

In [254]:
resultado = partidos_db.aggregate([
    {
        "$match": { "roundInfo.round": { "$ne": 19 } }
    },
    {
        "$group": {
            "_id": None,
            "ult_jornada": { "$max": "$roundInfo.round" }
        }
    }
])

resultado = list(resultado)
print(f"La última jornada de nuestra base de datos es: jornada {resultado[0]["ult_jornada"]}")
La última jornada de nuestra base de datos es: jornada 17

Ahora nos sale algo coherente: $$17_{(jornadas)} * 10_{partidos\_jornada} + 2_{partidos adelantados} = 172$$ Pero existe una cosa, que no he contado, y es que por motivo de la DANA hubo unos cuantos partidos del valencia que no se han jugado aún y que tiene fecha muy proxima, por lo que deberiamos eliminar los documentos de los partidos aun no disputados. En el momento de escritura de este apartado, se tiene bien claro que el partido que se va a quedar aplazado va a ser el Valencia - Real Madrid. ASí que vamos a eliminar de nuestro analísis los datos de los partidos que aún no se han disputado.

In [255]:
resultado = partidos_db.find({"status.description": { "$ne": "Ended" }}, {"slug"})

for doc in resultado:
    print(doc)
{'_id': ObjectId('6764876883201ea30d32ed85'), 'slug': 'real-madrid-valencia'}
{'_id': ObjectId('6764876883201ea30d32ed8e'), 'slug': 'valencia-espanyol'}
{'_id': ObjectId('6764876883201ea30d32edc0'), 'slug': 'villarreal-rayo-vallecano'}

Como estos partidos no se han jugado, no tiene sentido tenerlos (aún) en la base de datos, por que lo optimo sería eliminarlos

In [256]:
partidos_db.delete_many({"status.description": { "$ne": "Ended" }})
Out[256]:
DeleteResult({'n': 3, 'ok': 1.0}, acknowledged=True)

Verificamos que se han borrado los documentos de los partidos que aún no se han disputado y volvemos a contar los partidos que tenemos en nuestra base de datos. Finalmente nos debería dar el número correcto de partidos que vayamos a usar

In [257]:
resultado = partidos_db.find({"status.description": { "$ne": "Ended" }}, {"slug"})

for doc in resultado:
    print(doc)
In [258]:
partidos_db.count_documents({})
Out[258]:
171

Con estos datos sacados de la web podemos ver que hay bastantes elementos innecesarios para nuestra investigación. He decidido que los más relevantes para nuestro analísis de datos van a ser los siguientes:

  • id: id del partido
  • round: int que especifica la jornada
  • teams: documento con datos de los equipos
  • score: documento con datos del resultado

Por ello vamos a crear una nueva colección con solo estos datos de nuestros documentos. Vamos a hacer unos cambios para que sea más fácil de leer y solo tengan los datos que nos interesen:

  1. La jornada o round no este embebida en un documento.

  2. El apartado de teams será un documento con los siguientes datos:

    • home_team: str del nombre del equipo que juega en casa
    • away_team: str del nombre del equipo visitante
    • match_name: str del nombre del partido dado por SofaScore. Usaremos el campo slug
  3. El resultado o score sera un documento que dentro tenga las siguientes keys:

    • home_goals: int con goles del equipo que juega en casa.

    • home_result: str que indique si ha ganado, perdido o empatado

    • away_goals: int con goles del equipo visitante

    • away_result: str que indique si ha ganado, perdido o empatado

    • score_final: str del resultado final

      Para los goles entiendo que tanto "$homeScore.normaltime", como "$awayScore.normaltime" son los resultados finales.

      Para indicar si el resultado usaremos:

    • "W": si ha ganado (Win)

    • "D": si ha empatado (Draw)

    • "L": si ha perdido (Loose)

Además es importante que esté ordenado por la jornada, y en caso misma jornada, ordenar por el timestamp de inicio del partido, ambos de manera ascendente. Puede parecer más sencillo haber ordenado directamente por el timestamp de inicio, pero como existen los partidos adelantados y aplazados, no quedaría bien.

In [259]:
resultado = partidos_db.aggregate([
    {
        "$sort": {
            "roundInfo.round": -1,
            "startTimestamp": -1}
    },
    {
        "$project": {
            "id": 1,
            "round": "$roundInfo.round",
            "teams": {
                "home_team": "$homeTeam.name",
                "away_team": "$awayTeam.name",
                "match_name": "$slug"},
            "score": {
                "home_goals": "$homeScore.normaltime",
                "away_goals": "$awayScore.normaltime",
                "home_result": {
                    "$switch": {
                        "branches": [
                            {"case": {"$gt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "W"},
                            {"case": {"$eq": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "D"},
                            {"case": {"$lt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "L"}
                        ]
                    }
                },
                "away_result": {
                    "$switch": {
                        "branches": [
                            {"case": {"$lt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "W"},
                            {"case": {"$eq": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "D"},
                            {"case": {"$gt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "L"}
                        ]
                    }
                },
                "score_final": {"$concat":[{"$toString": "$homeScore.normaltime"}, "-", {"$toString": "$awayScore.normaltime"}]}
            }
            
        }
    }

])

Es importante indicar que al realizar operaciones con los aggregates se genera como outputs unos cursores o punteros, que van recorriendo la lista de los elementos que coinciden con las consultas o especificaciones. Como voy a usar este resultado en el próximo ejercicio he tenido que convertirlo todo en una lista para almacenar los resultados.

In [260]:
resultado = list(resultado)
for doc in resultado:
    print(doc)
{'_id': ObjectId('6764876883201ea30d32ed6e'), 'id': 12437801, 'round': 19, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-athletic-club'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed6d'), 'id': 12437816, 'round': 19, 'teams': {'home_team': 'Mallorca', 'away_team': 'Barcelona', 'match_name': 'mallorca-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 5, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-5'}}
{'_id': ObjectId('6764876883201ea30d32ed82'), 'id': 12437757, 'round': 17, 'teams': {'home_team': 'Barcelona', 'away_team': 'Leganés', 'match_name': 'leganes-barcelona'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed80'), 'id': 12437776, 'round': 17, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ed81'), 'id': 12437767, 'round': 17, 'teams': {'home_team': 'Villarreal', 'away_team': 'Real Betis', 'match_name': 'villarreal-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ed7f'), 'id': 12437762, 'round': 17, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Athletic Club', 'match_name': 'deportivo-alaves-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed7e'), 'id': 12437755, 'round': 17, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Getafe', 'match_name': 'getafe-atletico-madrid'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed7d'), 'id': 12437759, 'round': 17, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-rayo-vallecano'}, 'score': {'home_goals': 3, 'away_goals': 3, 'home_result': 'D', 'away_result': 'D', 'score_final': '3-3'}}
{'_id': ObjectId('6764876883201ea30d32ed7c'), 'id': 12437769, 'round': 17, 'teams': {'home_team': 'Sevilla', 'away_team': 'Celta Vigo', 'match_name': 'sevilla-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed7b'), 'id': 12437771, 'round': 17, 'teams': {'home_team': 'Mallorca', 'away_team': 'Girona FC', 'match_name': 'girona-fc-mallorca'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed7a'), 'id': 12437764, 'round': 17, 'teams': {'home_team': 'Espanyol', 'away_team': 'Osasuna', 'match_name': 'osasuna-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ed79'), 'id': 12437773, 'round': 17, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Valencia', 'match_name': 'real-valladolid-valencia'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed78'), 'id': 12437752, 'round': 16, 'teams': {'home_team': 'Getafe', 'away_team': 'Espanyol', 'match_name': 'getafe-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed77'), 'id': 12437733, 'round': 16, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Sevilla', 'match_name': 'atletico-madrid-sevilla'}, 'score': {'home_goals': 4, 'away_goals': 3, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-3'}}
{'_id': ObjectId('6764876883201ea30d32ed76'), 'id': 12437750, 'round': 16, 'teams': {'home_team': 'Osasuna', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-osasuna'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed75'), 'id': 12437731, 'round': 16, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Villarreal', 'match_name': 'athletic-club-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed74'), 'id': 12437742, 'round': 16, 'teams': {'home_team': 'Leganés', 'away_team': 'Real Sociedad', 'match_name': 'leganes-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32ed73'), 'id': 12437738, 'round': 16, 'teams': {'home_team': 'Girona FC', 'away_team': 'Real Madrid', 'match_name': 'girona-fc-real-madrid'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32ed72'), 'id': 12437747, 'round': 16, 'teams': {'home_team': 'Valencia', 'away_team': 'Rayo Vallecano', 'match_name': 'valencia-rayo-vallecano'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed71'), 'id': 12437745, 'round': 16, 'teams': {'home_team': 'Real Betis', 'away_team': 'Barcelona', 'match_name': 'barcelona-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed70'), 'id': 12437740, 'round': 16, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Real Valladolid', 'match_name': 'las-palmas-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed6f'), 'id': 12437735, 'round': 16, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Mallorca', 'match_name': 'mallorca-celta-vigo'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed6c'), 'id': 12437729, 'round': 15, 'teams': {'home_team': 'Sevilla', 'away_team': 'Osasuna', 'match_name': 'sevilla-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed6b'), 'id': 12437722, 'round': 15, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Real Betis', 'match_name': 'real-sociedad-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed6a'), 'id': 12437717, 'round': 15, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Athletic Club', 'match_name': 'athletic-club-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ed69'), 'id': 12437724, 'round': 15, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Getafe', 'match_name': 'getafe-real-madrid'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed68'), 'id': 12437727, 'round': 15, 'teams': {'home_team': 'Villarreal', 'away_team': 'Girona FC', 'match_name': 'girona-fc-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed67'), 'id': 12437720, 'round': 15, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-real-valladolid'}, 'score': {'home_goals': 0, 'away_goals': 5, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-5'}}
{'_id': ObjectId('6764876883201ea30d32eda2'), 'id': 12437715, 'round': 15, 'teams': {'home_team': 'Espanyol', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-espanyol'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32eda1'), 'id': 12437712, 'round': 15, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Leganés', 'match_name': 'deportivo-alaves-leganes'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32eda0'), 'id': 12437708, 'round': 15, 'teams': {'home_team': 'Barcelona', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ed9f'), 'id': 12437710, 'round': 15, 'teams': {'home_team': 'Mallorca', 'away_team': 'Valencia', 'match_name': 'valencia-mallorca'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed9e'), 'id': 12437685, 'round': 14, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Real Sociedad', 'match_name': 'athletic-club-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed9d'), 'id': 12437693, 'round': 14, 'teams': {'home_team': 'Leganés', 'away_team': 'Real Madrid', 'match_name': 'leganes-real-madrid'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32ed9c'), 'id': 12437700, 'round': 14, 'teams': {'home_team': 'Sevilla', 'away_team': 'Rayo Vallecano', 'match_name': 'sevilla-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed9b'), 'id': 12437688, 'round': 14, 'teams': {'home_team': 'Osasuna', 'away_team': 'Villarreal', 'match_name': 'osasuna-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed9a'), 'id': 12437696, 'round': 14, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Barcelona', 'match_name': 'celta-vigo-barcelona'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed99'), 'id': 12437705, 'round': 14, 'teams': {'home_team': 'Girona FC', 'away_team': 'Espanyol', 'match_name': 'girona-fc-espanyol'}, 'score': {'home_goals': 4, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-1'}}
{'_id': ObjectId('6764876883201ea30d32ed98'), 'id': 12437691, 'round': 14, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Mallorca', 'match_name': 'las-palmas-mallorca'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32ed97'), 'id': 12437703, 'round': 14, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-atletico-madrid'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed96'), 'id': 12437698, 'round': 14, 'teams': {'home_team': 'Valencia', 'away_team': 'Real Betis', 'match_name': 'valencia-real-betis'}, 'score': {'home_goals': 4, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-2'}}
{'_id': ObjectId('6764876883201ea30d32ed95'), 'id': 12437686, 'round': 14, 'teams': {'home_team': 'Getafe', 'away_team': 'Real Valladolid', 'match_name': 'getafe-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed83'), 'id': 13128822, 'round': 13, 'teams': {'home_team': 'Espanyol', 'away_team': 'Valencia', 'match_name': 'valencia-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed94'), 'id': 12437675, 'round': 13, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Barcelona', 'match_name': 'real-sociedad-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed93'), 'id': 12437662, 'round': 13, 'teams': {'home_team': 'Getafe', 'away_team': 'Girona FC', 'match_name': 'girona-fc-getafe'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed92'), 'id': 12437670, 'round': 13, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Athletic Club', 'match_name': 'real-valladolid-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed91'), 'id': 12437673, 'round': 13, 'teams': {'home_team': 'Mallorca', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-mallorca'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed90'), 'id': 12437660, 'round': 13, 'teams': {'home_team': 'Real Betis', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed8f'), 'id': 12437666, 'round': 13, 'teams': {'home_team': 'Leganés', 'away_team': 'Sevilla', 'match_name': 'leganes-sevilla'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed8d'), 'id': 12437682, 'round': 13, 'teams': {'home_team': 'Villarreal', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-villarreal'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32ed8c'), 'id': 12437678, 'round': 13, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Osasuna', 'match_name': 'real-madrid-osasuna'}, 'score': {'home_goals': 4, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-0'}}
{'_id': ObjectId('6764876883201ea30d32ed8b'), 'id': 12437680, 'round': 13, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-3'}}
{'_id': ObjectId('6764876883201ea30d32ed84'), 'id': 13096804, 'round': 12, 'teams': {'home_team': 'Villarreal', 'away_team': 'Rayo Vallecano', 'match_name': 'villarreal-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed8a'), 'id': 12437639, 'round': 12, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Getafe', 'match_name': 'getafe-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed89'), 'id': 12437634, 'round': 12, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Real Betis', 'match_name': 'athletic-club-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed88'), 'id': 12437655, 'round': 12, 'teams': {'home_team': 'Sevilla', 'away_team': 'Real Sociedad', 'match_name': 'sevilla-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32ed87'), 'id': 12437658, 'round': 12, 'teams': {'home_team': 'Barcelona', 'away_team': 'Espanyol', 'match_name': 'barcelona-espanyol'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32ed86'), 'id': 12437637, 'round': 12, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-atletico-madrid'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edbf'), 'id': 12437641, 'round': 12, 'teams': {'home_team': 'Girona FC', 'away_team': 'Leganés', 'match_name': 'girona-fc-leganes'}, 'score': {'home_goals': 4, 'away_goals': 3, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-3'}}
{'_id': ObjectId('6764876883201ea30d32edbe'), 'id': 12437644, 'round': 12, 'teams': {'home_team': 'Osasuna', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edbd'), 'id': 12437646, 'round': 12, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Mallorca', 'match_name': 'deportivo-alaves-mallorca'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edbc'), 'id': 12437611, 'round': 11, 'teams': {'home_team': 'Mallorca', 'away_team': 'Athletic Club', 'match_name': 'mallorca-athletic-club'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edbb'), 'id': 12437625, 'round': 11, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Osasuna', 'match_name': 'real-sociedad-osasuna'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edba'), 'id': 12437613, 'round': 11, 'teams': {'home_team': 'Real Betis', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edb9'), 'id': 12437607, 'round': 11, 'teams': {'home_team': 'Getafe', 'away_team': 'Valencia', 'match_name': 'getafe-valencia'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edb8'), 'id': 12437618, 'round': 11, 'teams': {'home_team': 'Leganés', 'away_team': 'Celta Vigo', 'match_name': 'leganes-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32edb7'), 'id': 12437616, 'round': 11, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Barcelona', 'match_name': 'real-madrid-barcelona'}, 'score': {'home_goals': 0, 'away_goals': 4, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-4'}}
{'_id': ObjectId('6764876883201ea30d32edb6'), 'id': 12437620, 'round': 11, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Girona FC', 'match_name': 'girona-fc-las-palmas'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edb5'), 'id': 12437630, 'round': 11, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edb4'), 'id': 12437627, 'round': 11, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Villarreal', 'match_name': 'real-valladolid-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edb3'), 'id': 12437609, 'round': 11, 'teams': {'home_team': 'Espanyol', 'away_team': 'Sevilla', 'match_name': 'sevilla-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edb2'), 'id': 12437854, 'round': 10, 'teams': {'home_team': 'Valencia', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-valencia'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32edb1'), 'id': 12437839, 'round': 10, 'teams': {'home_team': 'Barcelona', 'away_team': 'Sevilla', 'match_name': 'sevilla-barcelona'}, 'score': {'home_goals': 5, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '5-1'}}
{'_id': ObjectId('6764876883201ea30d32edb0'), 'id': 12437852, 'round': 10, 'teams': {'home_team': 'Villarreal', 'away_team': 'Getafe', 'match_name': 'getafe-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edaf'), 'id': 12437835, 'round': 10, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Leganés', 'match_name': 'leganes-atletico-madrid'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edae'), 'id': 12437847, 'round': 10, 'teams': {'home_team': 'Mallorca', 'away_team': 'Rayo Vallecano', 'match_name': 'mallorca-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edad'), 'id': 12437842, 'round': 10, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edac'), 'id': 12437843, 'round': 10, 'teams': {'home_team': 'Girona FC', 'away_team': 'Real Sociedad', 'match_name': 'girona-fc-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32edab'), 'id': 12437851, 'round': 10, 'teams': {'home_team': 'Osasuna', 'away_team': 'Real Betis', 'match_name': 'osasuna-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edaa'), 'id': 12437855, 'round': 10, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Espanyol', 'match_name': 'athletic-club-espanyol'}, 'score': {'home_goals': 4, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-1'}}
{'_id': ObjectId('6764876883201ea30d32eda9'), 'id': 12437849, 'round': 10, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Real Valladolid', 'match_name': 'deportivo-alaves-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32eda8'), 'id': 12437826, 'round': 9, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32eda7'), 'id': 12437828, 'round': 9, 'teams': {'home_team': 'Sevilla', 'away_team': 'Real Betis', 'match_name': 'sevilla-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32eda6'), 'id': 12437815, 'round': 9, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Barcelona', 'match_name': 'deportivo-alaves-barcelona'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32eda5'), 'id': 12437824, 'round': 9, 'teams': {'home_team': 'Girona FC', 'away_team': 'Athletic Club', 'match_name': 'girona-fc-athletic-club'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32eda4'), 'id': 12437813, 'round': 9, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Villarreal', 'match_name': 'real-madrid-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32eda3'), 'id': 12437832, 'round': 9, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Celta Vigo', 'match_name': 'las-palmas-celta-vigo'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32edde'), 'id': 12437833, 'round': 9, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Rayo Vallecano', 'match_name': 'real-valladolid-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32eddd'), 'id': 12437810, 'round': 9, 'teams': {'home_team': 'Getafe', 'away_team': 'Osasuna', 'match_name': 'getafe-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32eddc'), 'id': 12437820, 'round': 9, 'teams': {'home_team': 'Espanyol', 'away_team': 'Mallorca', 'match_name': 'mallorca-espanyol'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32eddb'), 'id': 12437818, 'round': 9, 'teams': {'home_team': 'Leganés', 'away_team': 'Valencia', 'match_name': 'leganes-valencia'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edda'), 'id': 12437800, 'round': 8, 'teams': {'home_team': 'Villarreal', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-villarreal'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edd9'), 'id': 12437787, 'round': 8, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Real Madrid', 'match_name': 'atletico-madrid-real-madrid'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd8'), 'id': 12437808, 'round': 8, 'teams': {'home_team': 'Real Betis', 'away_team': 'Espanyol', 'match_name': 'real-betis-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edd7'), 'id': 12437784, 'round': 8, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Sevilla', 'match_name': 'sevilla-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd6'), 'id': 12437789, 'round': 8, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Girona FC', 'match_name': 'girona-fc-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd5'), 'id': 12437795, 'round': 8, 'teams': {'home_team': 'Osasuna', 'away_team': 'Barcelona', 'match_name': 'osasuna-barcelona'}, 'score': {'home_goals': 4, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-2'}}
{'_id': ObjectId('6764876883201ea30d32edd4'), 'id': 12437792, 'round': 8, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Valencia', 'match_name': 'valencia-real-sociedad'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32edd3'), 'id': 12437805, 'round': 8, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Leganés', 'match_name': 'leganes-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd2'), 'id': 12437803, 'round': 8, 'teams': {'home_team': 'Getafe', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-getafe'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edd1'), 'id': 12437798, 'round': 8, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Mallorca', 'match_name': 'real-valladolid-mallorca'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edd0'), 'id': 12437774, 'round': 7, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-celta-vigo'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32edce'), 'id': 12437777, 'round': 7, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Real Betis', 'match_name': 'las-palmas-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edcf'), 'id': 12437768, 'round': 7, 'teams': {'home_team': 'Espanyol', 'away_team': 'Villarreal', 'match_name': 'villarreal-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edcd'), 'id': 12437758, 'round': 7, 'teams': {'home_team': 'Barcelona', 'away_team': 'Getafe', 'match_name': 'getafe-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edcc'), 'id': 12437761, 'round': 7, 'teams': {'home_team': 'Girona FC', 'away_team': 'Rayo Vallecano', 'match_name': 'girona-fc-rayo-vallecano'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edcb'), 'id': 12437782, 'round': 7, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-real-madrid'}, 'score': {'home_goals': 3, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-2'}}
{'_id': ObjectId('6764876883201ea30d32edc9'), 'id': 12437779, 'round': 7, 'teams': {'home_team': 'Valencia', 'away_team': 'Osasuna', 'match_name': 'valencia-osasuna'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edca'), 'id': 12437766, 'round': 7, 'teams': {'home_team': 'Sevilla', 'away_team': 'Real Valladolid', 'match_name': 'sevilla-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edfa'), 'id': 12437772, 'round': 7, 'teams': {'home_team': 'Leganés', 'away_team': 'Athletic Club', 'match_name': 'leganes-athletic-club'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edf8'), 'id': 12437763, 'round': 7, 'teams': {'home_team': 'Mallorca', 'away_team': 'Real Sociedad', 'match_name': 'mallorca-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edc8'), 'id': 12437736, 'round': 6, 'teams': {'home_team': 'Real Betis', 'away_team': 'Mallorca', 'match_name': 'mallorca-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edc7'), 'id': 12437744, 'round': 6, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edc6'), 'id': 12437746, 'round': 6, 'teams': {'home_team': 'Villarreal', 'away_team': 'Barcelona', 'match_name': 'villarreal-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 5, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-5'}}
{'_id': ObjectId('6764876883201ea30d32edc5'), 'id': 12437734, 'round': 6, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Celta Vigo', 'match_name': 'athletic-club-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edc4'), 'id': 12437739, 'round': 6, 'teams': {'home_team': 'Getafe', 'away_team': 'Leganés', 'match_name': 'getafe-leganes'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edc3'), 'id': 12437756, 'round': 6, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Espanyol', 'match_name': 'real-madrid-espanyol'}, 'score': {'home_goals': 4, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-1'}}
{'_id': ObjectId('6764876883201ea30d32edc2'), 'id': 12437748, 'round': 6, 'teams': {'home_team': 'Valencia', 'away_team': 'Girona FC', 'match_name': 'girona-fc-valencia'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edc1'), 'id': 12437753, 'round': 6, 'teams': {'home_team': 'Osasuna', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-osasuna'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edfc'), 'id': 12437751, 'round': 6, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Real Sociedad', 'match_name': 'real-valladolid-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edfb'), 'id': 12437741, 'round': 6, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Sevilla', 'match_name': 'deportivo-alaves-sevilla'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edf7'), 'id': 12437726, 'round': 5, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Osasuna', 'match_name': 'osasuna-rayo-vallecano'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edf6'), 'id': 12437709, 'round': 5, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Valencia', 'match_name': 'atletico-madrid-valencia'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32edf5'), 'id': 12437718, 'round': 5, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Athletic Club', 'match_name': 'las-palmas-athletic-club'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32edf4'), 'id': 12437721, 'round': 5, 'teams': {'home_team': 'Girona FC', 'away_team': 'Barcelona', 'match_name': 'girona-fc-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 4, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-4'}}
{'_id': ObjectId('6764876883201ea30d32edf3'), 'id': 12437714, 'round': 5, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edf2'), 'id': 12437728, 'round': 5, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edf1'), 'id': 12437723, 'round': 5, 'teams': {'home_team': 'Sevilla', 'away_team': 'Getafe', 'match_name': 'getafe-sevilla'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edf0'), 'id': 12437730, 'round': 5, 'teams': {'home_team': 'Espanyol', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-espanyol'}, 'score': {'home_goals': 3, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-2'}}
{'_id': ObjectId('6764876883201ea30d32edef'), 'id': 12437716, 'round': 5, 'teams': {'home_team': 'Mallorca', 'away_team': 'Villarreal', 'match_name': 'mallorca-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edee'), 'id': 12437711, 'round': 5, 'teams': {'home_team': 'Real Betis', 'away_team': 'Leganés', 'match_name': 'leganes-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32eded'), 'id': 12437702, 'round': 4, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Real Betis', 'match_name': 'real-madrid-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edec'), 'id': 12437690, 'round': 4, 'teams': {'home_team': 'Getafe', 'away_team': 'Real Sociedad', 'match_name': 'getafe-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edeb'), 'id': 12437706, 'round': 4, 'teams': {'home_team': 'Sevilla', 'away_team': 'Girona FC', 'match_name': 'girona-fc-sevilla'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32ede9'), 'id': 12437694, 'round': 4, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-deportivo-alaves'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edea'), 'id': 12437704, 'round': 4, 'teams': {'home_team': 'Osasuna', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-osasuna'}, 'score': {'home_goals': 3, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-2'}}
{'_id': ObjectId('6764876883201ea30d32ede8'), 'id': 12437692, 'round': 4, 'teams': {'home_team': 'Valencia', 'away_team': 'Villarreal', 'match_name': 'valencia-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ede7'), 'id': 12437697, 'round': 4, 'teams': {'home_team': 'Leganés', 'away_team': 'Mallorca', 'match_name': 'leganes-mallorca'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ede6'), 'id': 12437699, 'round': 4, 'teams': {'home_team': 'Espanyol', 'away_team': 'Rayo Vallecano', 'match_name': 'rayo-vallecano-espanyol'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ede5'), 'id': 12437684, 'round': 4, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-athletic-club'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ede4'), 'id': 12437687, 'round': 4, 'teams': {'home_team': 'Barcelona', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-barcelona'}, 'score': {'home_goals': 7, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '7-0'}}
{'_id': ObjectId('6764876883201ea30d32edf9'), 'id': 12778688, 'round': 3, 'teams': {'home_team': 'Real Betis', 'away_team': 'Getafe', 'match_name': 'getafe-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ede3'), 'id': 12437669, 'round': 3, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Real Madrid', 'match_name': 'las-palmas-real-madrid'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ede2'), 'id': 12437664, 'round': 3, 'teams': {'home_team': 'Girona FC', 'away_team': 'Osasuna', 'match_name': 'girona-fc-osasuna'}, 'score': {'home_goals': 4, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-0'}}
{'_id': ObjectId('6764876883201ea30d32ede1'), 'id': 12437681, 'round': 3, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Espanyol', 'match_name': 'atletico-madrid-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ede0'), 'id': 12437676, 'round': 3, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32eddf'), 'id': 12437659, 'round': 3, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Valencia', 'match_name': 'valencia-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ee14'), 'id': 12437679, 'round': 3, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Leganés', 'match_name': 'leganes-real-valladolid'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee13'), 'id': 12437672, 'round': 3, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Barcelona', 'match_name': 'rayo-vallecano-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee12'), 'id': 12437667, 'round': 3, 'teams': {'home_team': 'Mallorca', 'away_team': 'Sevilla', 'match_name': 'sevilla-mallorca'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee11'), 'id': 12437674, 'round': 3, 'teams': {'home_team': 'Villarreal', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-villarreal'}, 'score': {'home_goals': 4, 'away_goals': 3, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-3'}}
{'_id': ObjectId('6764876883201ea30d32ee10'), 'id': 12437628, 'round': 2, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Girona FC', 'match_name': 'girona-fc-atletico-madrid'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0f'), 'id': 12437645, 'round': 2, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Real Betis', 'match_name': 'deportivo-alaves-real-betis'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0e'), 'id': 12437647, 'round': 2, 'teams': {'home_team': 'Leganés', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-leganes'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ee0d'), 'id': 12437638, 'round': 2, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-real-madrid'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0b'), 'id': 12437636, 'round': 2, 'teams': {'home_team': 'Getafe', 'away_team': 'Rayo Vallecano', 'match_name': 'getafe-rayo-vallecano'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0c'), 'id': 12437650, 'round': 2, 'teams': {'home_team': 'Espanyol', 'away_team': 'Real Sociedad', 'match_name': 'real-sociedad-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ee0a'), 'id': 12437652, 'round': 2, 'teams': {'home_team': 'Barcelona', 'away_team': 'Athletic Club', 'match_name': 'athletic-club-barcelona'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ee09'), 'id': 12437656, 'round': 2, 'teams': {'home_team': 'Osasuna', 'away_team': 'Mallorca', 'match_name': 'mallorca-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ee08'), 'id': 12437642, 'round': 2, 'teams': {'home_team': 'Sevilla', 'away_team': 'Villarreal', 'match_name': 'sevilla-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee07'), 'id': 12437631, 'round': 2, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Valencia', 'match_name': 'valencia-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32ee06'), 'id': 12437610, 'round': 1, 'teams': {'home_team': 'Villarreal', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ee05'), 'id': 12437624, 'round': 1, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Espanyol', 'match_name': 'real-valladolid-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ee04'), 'id': 12437606, 'round': 1, 'teams': {'home_team': 'Mallorca', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-mallorca'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ee03'), 'id': 12437615, 'round': 1, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Rayo Vallecano', 'match_name': 'real-sociedad-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee02'), 'id': 12437612, 'round': 1, 'teams': {'home_team': 'Valencia', 'away_team': 'Barcelona', 'match_name': 'valencia-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee01'), 'id': 12437619, 'round': 1, 'teams': {'home_team': 'Osasuna', 'away_team': 'Leganés', 'match_name': 'leganes-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ee00'), 'id': 12437608, 'round': 1, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Sevilla', 'match_name': 'las-palmas-sevilla'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32edff'), 'id': 12437617, 'round': 1, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-celta-vigo'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edfe'), 'id': 12437605, 'round': 1, 'teams': {'home_team': 'Real Betis', 'away_team': 'Girona FC', 'match_name': 'girona-fc-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edfd'), 'id': 12437604, 'round': 1, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Getafe', 'match_name': 'getafe-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}

Personalmente me hubiera gustado una forma para hacer referencia a los elementos ya añadidos en nuestro nuevo documento para hacer las condicionales y otros procesos, para así poder hacer que sea un poquito más rápido (o eso creo yo). Lo que me refiero es que cuando usaba "$homeScore.normaltime" </span> despúes de haber indicado como generar <span style="color:lime">"home_goals"</span>, que hubiese podido llamar a la variable <span style="color:lime">"home_goals"</span> en vez de a la variable <span style="color:lime">"$homeScore.normaltime"

Finalmente guardamos estos datos en una nueva colección ya que tenemos los datos refinados. He incluido una función que usaré yo para poder reescribir los datos cada vez que haga una prueba.

In [261]:
partidos_ref = db["Partidos_refinados"]

reescribir_mongo(partidos_ref, resultado, True)

Scrapear datos de los jugadores por partido.¶

Es el momento de empezar a scrapear los datos de todos los jugadores por partido. Todo lo que hecho anteriormente nos ha servido para:

  • Conseguir la ID de cada partido.
  • Saber los resultados.
In [262]:
def scrape_player_match_stats(match_id: Union[str, int]):
    """ Scrape player stats for a match

    Parameters
    ----------
    match : str or int
        Sofascore match URL or match ID

    Returns
    -------
    : DataFrame
    """
    url = f'{API_PREFIX}/event/{match_id}/lineups'
    response = botasaurus_get(url)
    
    if response.status_code == 200:
        home_players = response.json()['home']['players']
        # print(home_players)
        away_players = response.json()['away']['players']
        # print(away_players)
        return home_players, away_players
    else:
        print("Ha habido un error al conectar con la página")
        

Por como está diseñada la API, tenemos que ir accediendo a cada partido uno a uno. Además una caraterística importante es que vamos a hacer que cada jugador "herede" los siguientes datos de la coleccion PARTIDOS_REF:

  • Resultado de su equipo en ese partido.
  • Nombre de su equipo.

En este apartado realizo actualización

In [263]:
jugadores_db = db["Jugadores"]
reescribir_jugadores_db = True


cursor = partidos_ref.find({})
for doc in cursor:
    match_id = doc["id"]

    home_result = doc["score"]["home_result"]
    away_result = doc["score"]["away_result"]
    
    home_team = doc["teams"]["home_team"]
    away_team = doc["teams"]["away_team"]

    home_players, away_players = scrape_player_match_stats(match_id)
    for p in home_players:
        p["result"] = home_result
        p["team"] = home_team

    for p in away_players:
        p["result"] = away_result
        p["team"] = away_team


    all_match_players = home_players + away_players
    print(json.dumps(all_match_players, indent=4))

    if reescribir_jugadores_db:
        reescribir_mongo(jugadores_db, all_match_players, reescribir_jugadores_db)
        reescribir_jugadores_db = False
    else:
        jugadores_db.insert_many(all_match_players)
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 19,
            "totalLongBalls": 17,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "savedShotsFromInsideTheBox": 3,
            "penaltySave": 1,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.4753
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 79,
            "touches": 48,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00659078
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 39,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0138525
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 35,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0086,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0539614
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 8,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 63,
            "touches": 43,
            "rating": 6.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0218,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.018323
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0214,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.125076
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 35,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0971,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0172154
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1228,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0781492
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "minutesPlayed": 63,
            "touches": 28,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 1.1412,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0167775
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "fouls": 3,
            "minutesPlayed": 27,
            "touches": 11,
            "rating": 6.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 6,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 11,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.3996,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai Sim\u00f3n",
            "slug": "unai-simon",
            "shortName": "U. Sim\u00f3n",
            "position": "G",
            "jerseyNumber": "1",
            "height": 189,
            "userCount": 4310,
            "id": 797291,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 865987200,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 43,
            "totalLongBalls": 16,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -0.3862
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 88,
            "touches": 63,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00933505
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ra\u00fal Asencio",
            "slug": "raul-asencio",
            "shortName": "R. Asencio",
            "position": "D",
            "jerseyNumber": "35",
            "height": 184,
            "userCount": 8387,
            "id": 1156645,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1045094400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 2829,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 71,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0100529
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 82,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 9,
            "totalTackle": 1,
            "wasFouled": 1,
            "penaltyWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 107,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1266,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00702789
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 71,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0225,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00786921
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 40,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.007,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0251662
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 38,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 47,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00642213
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 54,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 58,
            "touches": 64,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0114378
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 12,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 6,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.9,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.5717,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0100472
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "minutesPlayed": 88,
            "touches": 57,
            "rating": 7.5,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1467,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.280208
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceMissed": 2,
            "onTargetScoringAttempt": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.9606,
            "keyPass": 1,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0281
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 32,
            "touches": 23,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0812305
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 19,
            "touches": 25,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0665523
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 19,
            "touches": 12,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 13,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0100435
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 3,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lorenzo Aguado",
            "slug": "lorenzo-aguado-herrera",
            "shortName": "L. Aguado",
            "position": "D",
            "jerseyNumber": "39",
            "height": 177,
            "userCount": 673,
            "id": 1526535,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1032393600,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Gonzalo Garc\u00eda",
            "firstName": "Gonzalo Garc\u00eda",
            "slug": "gonzalo-garcia",
            "shortName": "G. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 2088,
            "id": 1402716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1080086400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 16,
            "totalLongBalls": 25,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.2288
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 78,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.462918
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 5.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 5.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "penaltyConceded": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 5.1,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.1,
                "alternative": null
            },
            "expectedAssists": 0.117861
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 67,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00617931
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0111735
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 10,
            "duelWon": 2,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalContest": 2,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 5.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1417,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            },
            "expectedAssists": 0.0168337
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 67,
            "touches": 43,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0208,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.148694
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 5,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 3,
            "totalOffside": 5,
            "minutesPlayed": 79,
            "touches": 20,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.7085,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00760022
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 3,
            "minutesPlayed": 78,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0344,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0116013
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 23,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0161,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0194668
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalTackle": 2,
            "minutesPlayed": 23,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 12,
            "touches": 11,
            "rating": 4.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 4.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0134233
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.0066000000000001
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00745541
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 72,
            "totalLongBalls": 13,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00603354
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 82,
            "accuratePass": 69,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 8,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 98,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00700343
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.109712
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 82,
            "touches": 63,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.12586
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 43,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 82,
            "touches": 67,
            "rating": 7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0165041
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 5,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.6,
            "possessionLostCtrl": 20,
            "expectedGoals": 1.0148,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.284207
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 72,
            "touches": 33,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0843,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.134801
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 4,
            "goals": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 40,
            "rating": 8.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 2.1516,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.9,
                "alternative": null
            },
            "expectedAssists": 0.535739
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 72,
            "touches": 26,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.6389,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0355477
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 18,
            "touches": 8,
            "rating": 8.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.2237,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.442451
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 8,
            "rating": 7.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.9728,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 8,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 8,
            "touches": 9,
            "rating": 7,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0102934
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 3,
            "touches": 4
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 23,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": -0.533
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 73,
            "accuratePass": 63,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 106,
            "rating": 7.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.2632,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.450788
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 78,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 74,
            "touches": 89,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0364947
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 90,
            "accuratePass": 87,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0431541
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 61,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7.2,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0864537
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 127,
            "accuratePass": 113,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 80,
            "touches": 138,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.120864
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 125,
            "accuratePass": 116,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 142,
            "rating": 8.5,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.638005
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 35,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 5,
            "shotOffTarget": 3,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 62,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1173,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.131567
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 26,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 55,
            "rating": 7,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.1162,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.392044
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 43,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 4,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 8.7,
            "possessionLostCtrl": 29,
            "expectedGoals": 0.3414,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.931037
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 20,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 1.6061,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0127086
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 23,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0826,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0294873
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "bigChanceCreated": 1,
            "minutesPlayed": 24,
            "touches": 9,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0376434
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 16,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.02438
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 15,
            "touches": 12,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.12336
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "minutesPlayed": 10,
            "touches": 9,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1048,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0245945
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ronald Ara\u00fajo",
            "slug": "ronald-araujo",
            "shortName": "R. Ara\u00fajo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 79473,
            "id": 925097,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920764800,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0631\u0648\u062c\u0648, \u0631\u0648\u0646\u0627\u0644\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0631\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 14,
            "totalLongBalls": 38,
            "accurateLongBalls": 14,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "punches": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.9,
            "possessionLostCtrl": 24,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "goalsPrevented": 2.2481
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 6,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0082,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0154958
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 6,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 8.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.075,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 14,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 12,
            "duelWon": 1,
            "challengeLost": 5,
            "totalContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.5,
            "possessionLostCtrl": 17,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00812511
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 58,
            "touches": 20,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1819,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0359,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 82,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 7,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.4,
            "possessionLostCtrl": 18,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.1061
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 1,
            "totalContest": 3,
            "totalClearance": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 58,
            "touches": 18,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "minutesPlayed": 45,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 32,
            "touches": 14,
            "rating": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.028704
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0374,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 8,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0591,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Iker Bachiller",
            "firstName": "",
            "lastName": "",
            "slug": "bachiller-iker",
            "shortName": "I. Bachiller",
            "position": "D",
            "jerseyNumber": "28",
            "height": 169,
            "userCount": 3,
            "id": 978652,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031961600,
            "proposedMarketValueRaw": {
                "value": 24000,
                "currency": "EUR"
            }
        },
        "teamId": 262427,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Naim Garc\u00eda",
            "firstName": "Naim Garc\u00eda",
            "lastName": "",
            "slug": "naim-garcia",
            "shortName": "N. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 227,
            "id": 1134395,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023753600,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.8865
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 39,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 13,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "totalClearance": 2,
            "interceptionWon": 4,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 95,
            "rating": 6.7,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0205065
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 47,
            "totalLongBalls": 16,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0240331
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 8,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0055303
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 85,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00698202
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 32,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 6,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.1,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0305,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.072161
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 34,
            "rating": 6.3,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0142694
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 11,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 67,
            "touches": 55,
            "rating": 6.5,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0450211
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 41,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 6,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0941,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0365568
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3116,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.342535
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "duelLost": 8,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 85,
            "touches": 24,
            "rating": 6.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3736,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 23,
            "touches": 25,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0832,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0709826
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 23,
            "touches": 26,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2087,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0191713
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0263,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0213,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0162173
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 20,
            "totalLongBalls": 26,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.5,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.6412
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "minutesPlayed": 85,
            "touches": 41,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0125721
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 7,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 7,
            "duelWon": 8,
            "totalClearance": 9,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 22,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 8,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 6,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.4,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.0104,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0186385
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 18,
            "challengeLost": 3,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 9,
            "wasFouled": 7,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0253,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0093347
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "wasFouled": 2,
            "minutesPlayed": 85,
            "touches": 48,
            "rating": 7.2,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.2139,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00800042
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 28,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3517,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0875625
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 4,
            "totalOffside": 3,
            "minutesPlayed": 72,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.3659,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00932608
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 14,
            "rating": 7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "challengeLost": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 11,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Adnan Januzaj",
            "slug": "adnan-januzaj",
            "shortName": "A. Januzaj",
            "position": "M",
            "jerseyNumber": "24",
            "height": 186,
            "userCount": 1624,
            "id": 328145,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791942400,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 3,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.146
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 58,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.414457
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 76,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0172,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0214262
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "minutesPlayed": 45,
            "touches": 38,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.043,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00659309
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 49,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.139176
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 70,
            "touches": 56,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.4035,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0829463
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 35,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 57,
            "touches": 46,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0240333
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 77,
            "totalLongBalls": 10,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 7,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 7.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0186,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.137321
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 43,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 8.3,
            "possessionLostCtrl": 30,
            "expectedGoals": 0.3854,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.296549
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0946,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.036989
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0393,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.15189
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.22585
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialWon": 6,
            "duelLost": 1,
            "duelWon": 6,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 33,
            "touches": 8,
            "rating": 7.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 1.0456,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "totalTackle": 1,
            "minutesPlayed": 20,
            "touches": 30,
            "rating": 7,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00926953
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Rub\u00e9n G\u00f3mez",
            "firstName": "Rub\u00e9n G\u00f3mez Peris",
            "lastName": "",
            "slug": "ruben-gomez",
            "shortName": "R. G\u00f3mez",
            "position": "G",
            "jerseyNumber": "55",
            "height": 185,
            "userCount": 23,
            "id": 1407702,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1011830400,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 55,
        "jerseyNumber": "55",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thiago Ojeda",
            "firstName": "Thiago Ojeda",
            "lastName": "",
            "slug": "thiago-ojeda",
            "shortName": "T. Ojeda",
            "position": "M",
            "jerseyNumber": "38",
            "height": 188,
            "userCount": 94,
            "id": 1116580,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042329600,
            "proposedMarketValueRaw": {
                "value": 245000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 14,
            "totalLongBalls": 27,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "goodHighClaim": 4,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.5919
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 3,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 29,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 3,
            "totalClearance": 10,
            "outfielderBlock": 2,
            "interceptionWon": 6,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00780934
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 7,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0107184
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 6,
            "totalTackle": 2,
            "wasFouled": 6,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0117953
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "totalClearance": 6,
            "interceptionWon": 5,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0170609
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 58,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0184,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0299144
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 34,
            "touches": 16,
            "rating": 5.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0108,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            },
            "expectedAssists": 0.120301
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 4,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 74,
            "touches": 63,
            "rating": 7.5,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.1111,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0474343
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 23,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 74,
            "touches": 43,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.128,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.358192
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 19,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.4338,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0335671
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 22,
            "touches": 9,
            "rating": 6.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0925,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 16,
            "touches": 7,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Isco",
            "slug": "isco",
            "shortName": "Isco",
            "position": "M",
            "jerseyNumber": "22",
            "height": 176,
            "userCount": 24415,
            "id": 103417,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703814400,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 12,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 10,
            "touches": 2,
            "rating": 6.9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Manu Gonz\u00e1lez",
            "firstName": "Manu Gonz\u00e1lez",
            "slug": "manu-gonzalez",
            "shortName": "M. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "41",
            "userCount": 59,
            "id": 1823954,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1176854400
        },
        "teamId": 275789,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Jes\u00fas Rodriguez",
            "slug": "jesus-rodriguez",
            "shortName": "J. Rodriguez",
            "position": "F",
            "jerseyNumber": "36",
            "height": 185,
            "userCount": 180,
            "id": 1800245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1132531200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 33,
            "totalLongBalls": 29,
            "accurateLongBalls": 17,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00631755,
            "goalsPrevented": -0.0616
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 12,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 8,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0176,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 45,
            "totalLongBalls": 12,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00887065
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 36,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 3,
            "interceptionWon": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0321,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "fouls": 3,
            "minutesPlayed": 72,
            "touches": 47,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 33,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.4,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.7346,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.151032
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 5,
            "duelLost": 13,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.2,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0190488
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0153,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.102787
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 61,
            "touches": 49,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0523,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00783545
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 6,
            "duelLost": 4,
            "duelWon": 14,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 5,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.4,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0934,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0398785
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 29,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0102401
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Unai Sim\u00f3n",
            "slug": "unai-simon",
            "shortName": "U. Sim\u00f3n",
            "position": "G",
            "jerseyNumber": "1",
            "height": 189,
            "userCount": 4310,
            "id": 797291,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 865987200,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 15,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "errorLeadToAGoal": 1,
            "goodHighClaim": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -0.1764
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.044,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.179081
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 45,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00747075
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 41,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 3,
            "totalClearance": 6,
            "interceptionWon": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.5,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0847,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 78,
            "touches": 50,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0379,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0331608
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 14,
            "duelWon": 13,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "totalTackle": 7,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0579,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0124605
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0308,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0298933
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "minutesPlayed": 60,
            "touches": 15,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2866,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 10,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 8,
            "wonContest": 2,
            "shotOffTarget": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 38,
            "rating": 6.1,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0912,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0437039
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 60,
            "touches": 26,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.169939
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 30,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0306,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 30,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.058,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 14,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.0177
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 56,
            "touches": 45,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0222,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0104427
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 51,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 6,
            "duelLost": 7,
            "duelWon": 10,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00575066
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 57,
            "totalLongBalls": 13,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 8,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0408,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0146709
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 17,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 8,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 8,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.441044
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 55,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.5013,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.362139
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 53,
            "totalLongBalls": 14,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.6,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.2196,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.31487
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 50,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "totalContest": 2,
            "shotOffTarget": 2,
            "totalClearance": 3,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 68,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0736,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0174579
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 4,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 38,
            "rating": 6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.6193,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0299049
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 46,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0738195
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0943,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.209489
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.039,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00980435
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 35,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0628,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 34,
            "touches": 19,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0325217
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 8,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Thomas Lemar",
            "firstName": "",
            "lastName": "",
            "slug": "thomas-lemar",
            "shortName": "T. Lemar",
            "position": "M",
            "jerseyNumber": "11",
            "height": 170,
            "userCount": 3268,
            "id": 191182,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 816134400,
            "proposedMarketValueRaw": {
                "value": 7700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 16,
            "totalLongBalls": 29,
            "accurateLongBalls": 14,
            "goalAssist": 0,
            "duelWon": 1,
            "lastManTackle": 1,
            "totalTackle": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.1506
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0321,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0120035
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0136089
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.029292
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 18,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.9,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0127941
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Abdoulaye Keita",
            "firstName": "Abdoulaye Keita",
            "lastName": "",
            "slug": "abdoulaye-keita",
            "shortName": "A. Keita",
            "position": "F",
            "jerseyNumber": "36",
            "height": 186,
            "userCount": 29,
            "id": 1168094,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030838400,
            "proposedMarketValueRaw": {
                "value": 155000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 55,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0499,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00503578
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 2,
            "interceptionWon": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0177241
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 56,
            "touches": 30,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 47,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 4,
            "totalTackle": 1,
            "wasFouled": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0495,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0987877
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 3,
            "challengeLost": 3,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 77,
            "touches": 28,
            "rating": 5.9,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.00519824
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 6,
            "duelLost": 11,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 46,
            "rating": 6.5,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0169,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0102466
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 35,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0446,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00593636
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 34,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00876395
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0193,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "interceptionWon": 1,
            "minutesPlayed": 13,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "John Patrick",
            "slug": "john-joe-patrick-finn",
            "shortName": "J. Patrick",
            "position": "M",
            "jerseyNumber": "31",
            "height": 192,
            "userCount": 111,
            "id": 1100831,
            "country": {
                "alpha2": "IE",
                "alpha3": "IRL",
                "name": "Ireland",
                "slug": "ireland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064361600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    }
]
[
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 16,
            "totalLongBalls": 18,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -1.5401
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00697011
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 36,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2055,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0453346
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 21,
            "totalLongBalls": 9,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1063,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0994178
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 22,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2297,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.138539
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 8,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "fouls": 5,
            "minutesPlayed": 60,
            "touches": 18,
            "rating": 6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0456,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 66,
            "touches": 32,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.333,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0376762
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 3,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 54,
            "touches": 25,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0612,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0376718
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0319693
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 4,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 8.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.5556,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.0810591
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "fouls": 1,
            "minutesPlayed": 36,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0199096
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 16,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0881,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "totalClearance": 1,
            "minutesPlayed": 24,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Joni Montiel",
            "slug": "joni-montiel",
            "shortName": "J. Montiel",
            "position": "M",
            "jerseyNumber": "25",
            "height": 173,
            "userCount": 55,
            "id": 827491,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 904780800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.7992
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 58,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 79,
            "touches": 91,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.362898
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 83,
            "accuratePass": 77,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00846363
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 60,
            "totalLongBalls": 11,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.054,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0093569
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 51,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.129339
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 62,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.2,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0255,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0596351
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 62,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "duelLost": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 81,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0318,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.234507
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 32,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 2,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "totalOffside": 1,
            "minutesPlayed": 79,
            "touches": 55,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.332,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0404272
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0909,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0288741
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 16,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00610551
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 36,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 4,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 8.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1039,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.211113
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0402,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0250445
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Eduardo Camavinga",
            "firstName": "",
            "lastName": "",
            "slug": "camavinga-eduardo",
            "shortName": "E. Camavinga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 182,
            "userCount": 155041,
            "id": 973887,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036886400,
            "proposedMarketValueRaw": {
                "value": 95000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 30,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 4,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0145,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ra\u00fal Asencio",
            "slug": "raul-asencio",
            "shortName": "R. Asencio",
            "position": "D",
            "jerseyNumber": "35",
            "height": 184,
            "userCount": 8387,
            "id": 1156645,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1045094400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 2829,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lorenzo Aguado",
            "slug": "lorenzo-aguado-herrera",
            "shortName": "L. Aguado",
            "position": "D",
            "jerseyNumber": "39",
            "height": 177,
            "userCount": 673,
            "id": 1526535,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1032393600,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Youssef Lekhedim",
            "firstName": "",
            "lastName": "",
            "slug": "youssef-lekhedim",
            "shortName": "Y. Lekhedim",
            "position": "M",
            "jerseyNumber": "29",
            "height": 170,
            "userCount": 3168,
            "id": 1403364,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1128643200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "V\u00edctor Mu\u00f1oz",
            "slug": "victor-munoz",
            "shortName": "V. Mu\u00f1oz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 173,
            "userCount": 556,
            "id": 1145642,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1058054400,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 44,
        "jerseyNumber": "44",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 27,
            "totalLongBalls": 27,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.4,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 1.0884
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 3,
            "minutesPlayed": 86,
            "touches": 67,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00922699
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 48,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 50,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "minutesPlayed": 89,
            "touches": 63,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0688486
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 39,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 8,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.5,
            "possessionLostCtrl": 24,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0797141
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Manu Bueno",
            "slug": "bueno-manu",
            "shortName": "M. Bueno",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 140,
            "id": 1142094,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090886400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Bueno Sebastian, Manuel"
                },
                "shortNameTranslation": {
                    "ar": "M. B. Sebastian"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 70,
            "touches": 32,
            "rating": 7.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1398,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 4,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00692442
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 35,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 5,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1567,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0470785
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 71,
            "touches": 42,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00783557
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 9,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.5,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.2643,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0343184
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alvaro Garcia-Pascual",
            "firstName": "Alvaro Garcia-Pascual",
            "slug": "alvaro-garcia-pascual",
            "shortName": "A. Garcia-Pascual",
            "position": "F",
            "jerseyNumber": "42",
            "height": 190,
            "userCount": 27,
            "id": 1929542,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00643103
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 2,
            "minutesPlayed": 20,
            "touches": 6,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 19,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0208,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dar\u00edo Benavides",
            "slug": "dario-benavides",
            "shortName": "D. Benavides",
            "position": "D",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 41,
            "id": 1142092,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042329600,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 13,
            "touches": 2,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 4,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Rafael Romero",
            "firstName": "Rafael Romero",
            "slug": "rafael-romero",
            "shortName": "R. R. Jim\u00e9nez",
            "position": "G",
            "jerseyNumber": "43",
            "height": 190,
            "userCount": 11,
            "id": 1089222,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 263931,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.1837
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 38,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 1,
            "totalClearance": 5,
            "interceptionWon": 4,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0208349
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 51,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 7,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00518517
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 72,
            "totalLongBalls": 10,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 7.2,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0687008
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.9,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.0148,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.112483
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 55,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 73,
            "touches": 66,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0647241
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0196435
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 62,
            "rating": 6.9,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0183,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0108893
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 33,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.3142,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.181515
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 3,
            "hitWoodwork": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 73,
            "touches": 35,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1806,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.112084
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 66,
            "touches": 26,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.3142,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0904422
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "totalOffside": 1,
            "minutesPlayed": 24,
            "touches": 12,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00678132
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "minutesPlayed": 17,
            "touches": 28,
            "rating": 7,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00832162
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "fouls": 2,
            "minutesPlayed": 17,
            "touches": 1,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.4018,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Yoel Lago",
            "firstName": "Yoel",
            "lastName": "Lago",
            "slug": "yoel-lago",
            "shortName": "Y. Lago",
            "position": "D",
            "jerseyNumber": "29",
            "height": 185,
            "userCount": 15,
            "id": 1145100,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1080172800,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Luca De La Torre",
            "firstName": "",
            "lastName": "",
            "slug": "luca-de-la-torre",
            "shortName": "L. D. L. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 652,
            "id": 846492,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895881600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u062f\u064a \u0644\u0627 \u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062f. \u0644. \u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 12,
            "totalLongBalls": 22,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.2,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -0.1319
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0599265
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 11,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 41,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00533192
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.117592
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 34,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1223,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00879585
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 41,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1051,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0117541
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 3,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00919275
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 73,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0151,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.204331
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 8,
            "duelLost": 10,
            "duelWon": 11,
            "dispossessed": 4,
            "totalContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 83,
            "touches": 43,
            "rating": 8,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.8444,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.0115405
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 7,
            "rating": 6,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.173618
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 8,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 17,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 12,
            "touches": 4,
            "rating": 6.3,
            "expectedGoals": 0.0548,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 90,
            "touches": 23,
            "rating": 5.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            },
            "goalsPrevented": -0.4768
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 53,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 3,
            "minutesPlayed": 57,
            "touches": 63,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0184128
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 94,
            "accuratePass": 91,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 102,
            "rating": 7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.019,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0347884
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 119,
            "accuratePass": 110,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 9,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 137,
            "rating": 7.5,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0176,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.10872
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 42,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1186,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0354272
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 66,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1871,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0517928
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 73,
            "touches": 64,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0439,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0830841
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 63,
            "touches": 29,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0727,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00796125
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 60,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 12,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0545865
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "duelWon": 2,
            "blockedScoringAttempt": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0749,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0867459
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.387979
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0248,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0116443
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 33,
            "touches": 3,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 32,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0288,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0505352
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 27,
            "touches": 9,
            "rating": 6.7,
            "expectedGoals": 0.2333,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00972209
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "minutesPlayed": 17,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0119031
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ricard Artero",
            "firstName": "Ricard Artero",
            "lastName": "",
            "slug": "ricard-artero",
            "shortName": "R. Artero",
            "position": "M",
            "jerseyNumber": "36",
            "height": 181,
            "userCount": 52,
            "id": 1134432,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044403200,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 368693,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jastin Garc\u00eda",
            "slug": "jastin-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "31",
            "height": 180,
            "userCount": 140,
            "id": 1518119,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1074211200
        },
        "teamId": 368693,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "goodHighClaim": 3,
            "punches": 2,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 39,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.1,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0654235
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 38,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 3,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 43,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0955059
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0173,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0298991
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 60,
            "touches": 24,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0472304
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 38,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0155,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0336377
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 86,
            "touches": 43,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0178,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0164137
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0168131
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1633,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.014874
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 30,
            "touches": 13,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0402,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.151587
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0695,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Justin Smith",
            "firstName": "Justin Smith",
            "slug": "justin-smith",
            "shortName": "J. Smith",
            "position": "M",
            "jerseyNumber": "40",
            "height": 188,
            "userCount": 69,
            "id": 1110904,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 315000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
                }
            }
        },
        "teamId": 37055,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 32,
            "totalLongBalls": 14,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "goalsPrevented": 0.5387
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "goalAssist": 0,
            "totalCross": 6,
            "duelWon": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 83,
            "touches": 51,
            "rating": 7,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0134458
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 74,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 94,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00573483
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 72,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0115997
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 59,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 33,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0907829
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 67,
            "touches": 55,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0188,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00941546
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 53,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0462,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00672269
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 42,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 9,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 4,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 86,
            "touches": 65,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.057,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.07809
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.136406
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1257,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00553159
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 23,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0316,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 4,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 23,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0062,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 3,
            "minutesPlayed": 15,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Kike Barja",
            "slug": "kike-barja",
            "shortName": "K. Barja",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 121,
            "id": 591132,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860112000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0631\u062c\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 18,
            "totalLongBalls": 19,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 4,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.0333
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00533416
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 23,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 4,
            "duelWon": 8,
            "totalContest": 1,
            "totalClearance": 13,
            "clearanceOffLine": 1,
            "outfielderBlock": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 8.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "totalClearance": 11,
            "outfielderBlock": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 10,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 56,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0259535
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.3018,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0059653
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 58,
            "touches": 30,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0107278
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 24,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 1,
            "aerialLost": 4,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 17,
            "rating": 7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 32,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 19,
            "touches": 12,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 7,
            "touches": 3,
            "rating": 5.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 5.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.1,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.2458,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "C\u00e9sar de la Hoz",
            "firstName": "",
            "lastName": "",
            "slug": "cesar-de-la-hoz",
            "shortName": "C. de la Hoz",
            "position": "M",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 49,
            "id": 233328,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701913600,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Adri\u00e1n Arnu",
            "slug": "adrian-arnu",
            "shortName": "A. Arnu",
            "position": "F",
            "jerseyNumber": "29",
            "height": 185,
            "userCount": 129,
            "id": 1542697,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1172966400,
            "proposedMarketValueRaw": {
                "value": 475000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 15,
            "totalLongBalls": 12,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "errorLeadToAShot": 1,
            "goodHighClaim": 1,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.5946
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 67,
            "touches": 58,
            "rating": 6.2,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0097649
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 57,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 9,
            "duelWon": 9,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1855,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0122172
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 53,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 69,
            "rating": 6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00624706
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 40,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00919186
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0139557
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 77,
            "totalLongBalls": 11,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalCross": 12,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 7.6,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0867,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.275918
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 41,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 4,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 61,
            "touches": 56,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0554,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0181338
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 17,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.1,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.0297,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.314014
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.7,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.0382,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0457952
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2288,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.116058
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0437932
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 46,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.014,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0442706
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rafa Mir",
            "slug": "rafa-mir",
            "shortName": "R. Mir",
            "position": "F",
            "jerseyNumber": "11",
            "height": 189,
            "userCount": 1282,
            "id": 825754,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 866592000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 29,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.2118,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 22,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00837871
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 10,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0123328
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jaume Dom\u00e9nech",
            "slug": "jaume-domenech",
            "shortName": "J. Dom\u00e9nech",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 212,
            "id": 235386,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 657763200,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rub\u00e9n Iranzo",
            "slug": "ruben-iranzo",
            "shortName": "R. Iranzo",
            "position": "D",
            "jerseyNumber": "31",
            "height": 182,
            "userCount": 48,
            "id": 1167704,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047600000,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Iker Cordoba",
            "slug": "iker-cordoba",
            "shortName": "I. C\u00f3rdoba",
            "position": "D",
            "jerseyNumber": "38",
            "height": 190,
            "userCount": 32,
            "id": 1563953,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1131667200,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 10,
            "totalLongBalls": 20,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0456
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 7,
            "totalContest": 1,
            "totalClearance": 6,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.015016
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0192754
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 25,
            "totalLongBalls": 14,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0225,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00785312
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0101905
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0396,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0582,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0156546
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0091,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0658044
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 42,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1458,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0386856
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 16,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 4,
            "duelLost": 10,
            "duelWon": 9,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 82,
            "touches": 43,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0634,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0269268
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 8,
            "aerialWon": 6,
            "duelLost": 11,
            "duelWon": 12,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 40,
            "rating": 7.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0492,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0162948
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "John Patrick",
            "slug": "john-joe-patrick-finn",
            "shortName": "J. Patrick",
            "position": "M",
            "jerseyNumber": "31",
            "height": 192,
            "userCount": 111,
            "id": 1100831,
            "country": {
                "alpha2": "IE",
                "alpha3": "IRL",
                "name": "Ireland",
                "slug": "ireland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064361600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "minutesPlayed": 15,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 8,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 3,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 5,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 8.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "goalsPrevented": -0.0905
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 62,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0301061
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 61,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 59,
            "totalLongBalls": 17,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 5,
            "aerialWon": 5,
            "duelLost": 9,
            "duelWon": 7,
            "challengeLost": 2,
            "totalClearance": 10,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 6.8,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.140595
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 30,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1389,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.078313
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 38,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00589097
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 22,
            "rating": 6.3,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 8,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 3,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.8,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.4414,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0284579
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Justin Smith",
            "firstName": "Justin Smith",
            "slug": "justin-smith",
            "shortName": "J. Smith",
            "position": "M",
            "jerseyNumber": "40",
            "height": 188,
            "userCount": 69,
            "id": 1110904,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 315000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
                }
            }
        },
        "teamId": 37055,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0273782
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0764,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0135606
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 79,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.024,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.104715
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 45,
            "touches": 14,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0966,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0594078
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 22,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.016,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0380653
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "interceptionWon": 1,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Edu Exp\u00f3sito",
            "slug": "edu-exposito",
            "shortName": "E. Exp\u00f3sito",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 203,
            "id": 877262,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838857600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648, \u0625\u064a\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 90,
            "touches": 15,
            "rating": 5.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "goalsPrevented": -1.643
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 78,
            "accuratePass": 70,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 107,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.450421
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 74,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 7,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00906972
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 75,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 3,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 79,
            "touches": 94,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00964739
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 46,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 10,
            "duelWon": 5,
            "challengeLost": 3,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 6.4,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0173,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0760032
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0723,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0371983
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 42,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 63,
            "touches": 62,
            "rating": 7.2,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0344,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0251267
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 67,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 6,
            "duelWon": 10,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.7,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.25217
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 38,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 63,
            "touches": 51,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.6576,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00852132
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 46,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "hitWoodwork": 1,
            "goals": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 9.3,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.6741,
            "keyPass": 1,
            "ratingVersions": {
                "original": 9.3,
                "alternative": null
            },
            "expectedAssists": 0.370961
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "fouls": 3,
            "minutesPlayed": 75,
            "touches": 37,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0167,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0884221
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 27,
            "touches": 39,
            "rating": 7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0218527
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceMissed": 3,
            "onTargetScoringAttempt": 3,
            "minutesPlayed": 27,
            "touches": 12,
            "rating": 5.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.5212,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            },
            "expectedAssists": 0.0363194
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 19,
            "rating": 8.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0194,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.180271
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 3,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 15,
            "touches": 19,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0288,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0170799
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 3,
            "lastManTackle": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 14,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 22,
            "totalLongBalls": 30,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 5,
            "saves": 5,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.3,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -1.4357
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 46,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 3,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 9,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 6.3,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00630885
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 66,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 7,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00876851
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 60,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0131242
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 32,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 2,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 2,
            "bigChanceCreated": 2,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.510381
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1744,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0107345
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 42,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 52,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0154159
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 54,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0163,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0269891
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 33,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 11,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "minutesPlayed": 89,
            "touches": 59,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0518,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0337058
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 14,
            "duelWon": 1,
            "dispossessed": 5,
            "totalContest": 5,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 53,
            "rating": 6.5,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.1444,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0115141
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 35,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0111728
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 9,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "minutesPlayed": 10,
            "touches": 11,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 1
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.0664
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 6.8,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0281354
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 70,
            "totalLongBalls": 15,
            "accurateLongBalls": 9,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2655,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.477363
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 64,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0132074
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 6.3,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 49,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 3,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.3,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0225,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.343336
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 5,
            "minutesPlayed": 89,
            "touches": 44,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2517,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0273947
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 42,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 4,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "minutesPlayed": 83,
            "touches": 73,
            "rating": 8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1557,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.43837
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 3,
            "wasFouled": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0654886
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0672,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.129414
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 9,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.7012,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.4934,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Kike Barja",
            "slug": "kike-barja",
            "shortName": "K. Barja",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 121,
            "id": 591132,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860112000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0631\u062c\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 15,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 8,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 17,
            "totalLongBalls": 28,
            "accurateLongBalls": 14,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 3,
            "totalClearance": 4,
            "wasFouled": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "punches": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 8.4,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.00523824,
            "goalsPrevented": 0.3603
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0283446
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 11,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0142763
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 25,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "bigChanceCreated": 1,
            "totalClearance": 5,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0609446
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 20,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 4,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.585205
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1182,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0169405
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00689588
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 67,
            "touches": 45,
            "rating": 7.5,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0336,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.312766
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0115003
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 6,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "goals": 2,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 84,
            "touches": 36,
            "rating": 8.5,
            "possessionLostCtrl": 15,
            "expectedGoals": 1.3837,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.00863482
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 9,
            "touches": 3,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 24,
            "totalLongBalls": 21,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.441
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0611206
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 52,
            "totalLongBalls": 12,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00832294
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 35,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 6,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2206,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0245,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0113974
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 85,
            "touches": 51,
            "rating": 7.4,
            "possessionLostCtrl": 10,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.29682
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00663262
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 4,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 43,
            "rating": 7.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.3456,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0110905
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.1,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.5154,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0513096
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 9,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 60,
            "touches": 30,
            "rating": 6.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0268,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 68,
            "touches": 24,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0168,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0106787
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0241828
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 2,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 6,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 22,
            "touches": 12,
            "rating": 7.4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.155489
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 12,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0154,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai Sim\u00f3n",
            "slug": "unai-simon",
            "shortName": "U. Sim\u00f3n",
            "position": "G",
            "jerseyNumber": "1",
            "height": 189,
            "userCount": 4310,
            "id": 797291,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 865987200,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "errorLeadToAGoal": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 73,
            "touches": 43,
            "rating": 5.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "goalsPrevented": -0.7626
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 49,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 4,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0496724
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 86,
            "accuratePass": 81,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 7,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0106963
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 90,
            "accuratePass": 80,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 100,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 44,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 10,
            "totalContest": 4,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0132,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.083482
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 43,
            "rating": 6.3,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.3198,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0127669
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 51,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 7,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2258,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0780788
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 44,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00713179
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 3,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.1,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0926,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.514259
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0694,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0356147
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 45,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0441111
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 44,
            "touches": 22,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1283,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0104648
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 17,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 1,
            "touches": 4,
            "possessionLostCtrl": 1
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnau Sol\u00e0",
            "firstName": "",
            "lastName": "",
            "slug": "arnau-sola",
            "shortName": "A. Sol\u00e0",
            "position": "D",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 80,
            "id": 997025,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049414400,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
                }
            }
        },
        "teamId": 24338,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 15,
            "totalLongBalls": 25,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.4,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0104631,
            "goalsPrevented": -0.8831
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.4,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0741889
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 49,
            "totalLongBalls": 9,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 8,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 36,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0618009
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalContest": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 5,
            "minutesPlayed": 79,
            "touches": 52,
            "rating": 6.2,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0191567
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "errorLeadToAGoal": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2218,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0648266
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 7,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "wasFouled": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.101,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.139774
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 35,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 8,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 6.9,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.1503,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.174423
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 56,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0206,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0351784
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 11,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.3,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0358,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0160571
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 4,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 34,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00764845
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "shotOffTarget": 1,
            "totalOffside": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1144,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Iker Bachiller",
            "firstName": "",
            "lastName": "",
            "slug": "bachiller-iker",
            "shortName": "I. Bachiller",
            "position": "D",
            "jerseyNumber": "28",
            "height": 169,
            "userCount": 3,
            "id": 978652,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031961600,
            "proposedMarketValueRaw": {
                "value": 24000,
                "currency": "EUR"
            }
        },
        "teamId": 262427,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Naim Garc\u00eda",
            "firstName": "Naim Garc\u00eda",
            "lastName": "",
            "slug": "naim-garcia",
            "shortName": "N. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 227,
            "id": 1134395,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023753600,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 16,
            "totalLongBalls": 24,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.6456
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 28,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0134087
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0252,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 32,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 8,
            "challengeLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0088,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 50,
            "touches": 32,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 78,
            "touches": 44,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0919,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0630247
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 10,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 8,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.5562,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.0858124
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 2,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.6743,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0534404
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 3,
            "minutesPlayed": 77,
            "touches": 30,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.116349
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2104,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.472458
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 38,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 3,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 40,
            "touches": 30,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0261,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0418515
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 13,
            "touches": 16,
            "rating": 8.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0515,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.0850743
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1651,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Urko Gonz\u00e1lez",
            "slug": "urko-gonzalez",
            "shortName": "U. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 131,
            "id": 1064009,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985046400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "I\u00f1aki Rup\u00e9rez",
            "slug": "inaki-ruperez",
            "shortName": "I. Rup\u00e9rez",
            "position": "D",
            "jerseyNumber": "34",
            "userCount": 32,
            "id": 1657024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041897600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 24360,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Arkaitz Mariezkurrena",
            "slug": "arkaitz-mariezkurrena",
            "shortName": "A. Mariezkurrena",
            "position": "F",
            "jerseyNumber": "20",
            "userCount": 28,
            "id": 1526575,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112659200,
            "proposedMarketValueRaw": {
                "value": 220000,
                "currency": "EUR"
            }
        },
        "teamId": 24360,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": -1.4139
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0135306
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 56,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 65,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "lastManTackle": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0444,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0278784
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 48,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0939857
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 49,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0229327
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 52,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0310145
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1362,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0695067
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 4,
            "minutesPlayed": 78,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0635,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0156579
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 30,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "minutesPlayed": 58,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0389,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.019593
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 58,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "minutesPlayed": 32,
            "touches": 17,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0693,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0175928
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 32,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jastin Garc\u00eda",
            "slug": "jastin-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "31",
            "height": 180,
            "userCount": 140,
            "id": 1518119,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1074211200
        },
        "teamId": 368693,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "goalsPrevented": 0.1781
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 54,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0355095
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 76,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.3579,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0206987
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 85,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 102,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0209,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0138753
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 43,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 79,
            "touches": 55,
            "rating": 7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0240067
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 57,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 3,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 2,
            "minutesPlayed": 79,
            "touches": 69,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0246769
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 112,
            "accuratePass": 103,
            "totalLongBalls": 10,
            "accurateLongBalls": 8,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "bigChanceCreated": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 121,
            "rating": 8.5,
            "possessionLostCtrl": 12,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.352819
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 51,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 72,
            "rating": 7.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1036,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0256938
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "minutesPlayed": 61,
            "touches": 48,
            "rating": 8.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0588,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.6,
                "alternative": null
            },
            "expectedAssists": 0.218684
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 38,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0501,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0233355
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 79,
            "touches": 40,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.3306,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0264697
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 30,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0157872
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ra\u00fal Asencio",
            "slug": "raul-asencio",
            "shortName": "R. Asencio",
            "position": "D",
            "jerseyNumber": "35",
            "height": 184,
            "userCount": 8387,
            "id": 1156645,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1045094400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 2829,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 11,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 1,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Ya\u00f1ez",
            "slug": "daniel-yanez",
            "shortName": "D. Ya\u00f1ez",
            "position": "F",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 862,
            "id": 1546404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1175040000
        },
        "teamId": 120854,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.2692
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 4,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.9,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.0193,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0173187
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 39,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 5,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1201,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0187906
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 57,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 3,
            "interceptionWon": 3,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.010422
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 53,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 7,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 80,
            "rating": 7.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0638,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0140171
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jos\u00e9 Luis Gay\u00e0",
            "slug": "jose-luis-gaya",
            "shortName": "J. L. Gay\u00e0",
            "position": "D",
            "jerseyNumber": "14",
            "height": 172,
            "userCount": 1789,
            "id": 227922,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801360000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.015326
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 4,
            "aerialLost": 1,
            "duelLost": 10,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 5,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "totalTackle": 3,
            "minutesPlayed": 89,
            "touches": 64,
            "rating": 7.1,
            "possessionLostCtrl": 27,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.604463
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 60,
            "touches": 43,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0444635
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 44,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 3,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0546,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0362071
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 24,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0466,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2342,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 5,
            "aerialWon": 2,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 30,
            "touches": 46,
            "rating": 7.8,
            "possessionLostCtrl": 10,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.301895
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rafa Mir",
            "slug": "rafa-mir",
            "shortName": "R. Mir",
            "position": "F",
            "jerseyNumber": "11",
            "height": 189,
            "userCount": 1282,
            "id": 825754,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 866592000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 30,
            "touches": 6,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.7221,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "minutesPlayed": 8,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 8,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0122,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0175947
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jaume Dom\u00e9nech",
            "slug": "jaume-domenech",
            "shortName": "J. Dom\u00e9nech",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 212,
            "id": 235386,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 657763200,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Iker Cordoba",
            "slug": "iker-cordoba",
            "shortName": "I. C\u00f3rdoba",
            "position": "D",
            "jerseyNumber": "38",
            "height": 190,
            "userCount": 32,
            "id": 1563953,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1131667200,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 19,
            "totalLongBalls": 28,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 5,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.6,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.6838
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.353398
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 23,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 7,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0132365
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 10,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0290514
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 26,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.3072,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00597455
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 78,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 59,
            "touches": 23,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0337477
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 9,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 72,
            "touches": 36,
            "rating": 7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0202,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.110484
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 31,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3432,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 31,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "minutesPlayed": 18,
            "touches": 11,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0767382
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 12,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.2324,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 18,
            "totalLongBalls": 18,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.3133
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00584937
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 28,
            "totalLongBalls": 15,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0148,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1097,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 72,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.130641
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 76,
            "touches": 28,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 30,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.8629,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0168507
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 23,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2317,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.160266
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.8144,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0612225
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "minutesPlayed": 86,
            "touches": 45,
            "rating": 6.2,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.8646,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.106307
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "penaltyWon": 1,
            "minutesPlayed": 77,
            "touches": 19,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0423,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0148763
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0524371
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Isco",
            "slug": "isco",
            "shortName": "Isco",
            "position": "M",
            "jerseyNumber": "22",
            "height": 176,
            "userCount": 24415,
            "id": 103417,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703814400,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0121709
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 13,
            "touches": 10,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.2064,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00943652
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Jes\u00fas Rodriguez",
            "slug": "jesus-rodriguez",
            "shortName": "J. Rodriguez",
            "position": "F",
            "jerseyNumber": "36",
            "height": 185,
            "userCount": 180,
            "id": 1800245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1132531200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 14,
            "touches": 9,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Carlos Guirao",
            "firstName": "Carlos",
            "lastName": "Guirao",
            "slug": "carlos-guirao",
            "shortName": "C. Guirao",
            "position": "M",
            "jerseyNumber": "16",
            "userCount": 47,
            "id": 1632259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051401600,
            "proposedMarketValueRaw": {
                "value": 91000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 25,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.7517
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 47,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 6.8,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0453,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.542172
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 100,
            "accuratePass": 92,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 6,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 110,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0102222
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 90,
            "accuratePass": 82,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 6,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 98,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0245268
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 1,
            "minutesPlayed": 88,
            "touches": 52,
            "rating": 6.1,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0100309
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 52,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.023747
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 57,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0227,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0172235
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 60,
            "touches": 27,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0275,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0305185
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 4,
            "duelLost": 6,
            "duelWon": 11,
            "totalContest": 10,
            "wonContest": 6,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.8,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.1927,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.234411
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 24,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.9076,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0208247
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "minutesPlayed": 60,
            "touches": 24,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1406,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0612843
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 20,
            "rating": 6.1,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.201291
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalOffside": 2,
            "minutesPlayed": 30,
            "touches": 12,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.5825,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 16,
            "touches": 11,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 12,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": 0.2539
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "totalContest": 2,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "minutesPlayed": 58,
            "touches": 43,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00540041
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 72,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 7,
            "duelWon": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00696894
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 61,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 34,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0142397
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "errorLeadToAShot": 1,
            "fouls": 2,
            "minutesPlayed": 58,
            "touches": 40,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0538,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0114812
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 78,
            "accuratePass": 70,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 10,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 6,
            "minutesPlayed": 90,
            "touches": 90,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0254517
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 3,
            "goals": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 47,
            "rating": 8.4,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.2713,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.120945
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0179966
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 14,
            "duelWon": 6,
            "challengeLost": 3,
            "dispossessed": 4,
            "totalContest": 6,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.2,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.031,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0842914
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 5,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 78,
            "touches": 20,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0954,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0248579
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 32,
            "touches": 28,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0290157
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 32,
            "touches": 34,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.042,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0420972
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.4935,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0148115
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "minutesPlayed": 13,
            "touches": 7,
            "rating": 6.7,
            "expectedGoals": 0.0591,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0501,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "totalLongBalls": 12,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": 0.1854
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 22,
            "totalLongBalls": 10,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.8,
            "possessionLostCtrl": 19,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.216555
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 34,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 85,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0338,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 44,
            "totalLongBalls": 10,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.15731
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 35,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 6,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 3,
            "totalClearance": 3,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0111643
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 31,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00923876
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 40,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3595,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00621839
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 13,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0776,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.314539
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 68,
            "touches": 17,
            "rating": 7.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.7056,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "fouls": 2,
            "minutesPlayed": 22,
            "touches": 14,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 22,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.219,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 15,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0193,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0226803
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 14,
            "touches": 4,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "minutesPlayed": 14,
            "touches": 2,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "C\u00e9sar de la Hoz",
            "firstName": "",
            "lastName": "",
            "slug": "cesar-de-la-hoz",
            "shortName": "C. de la Hoz",
            "position": "M",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 49,
            "id": 233328,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701913600,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 1.851
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 44,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 8,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0348951
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 41,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 6,
            "totalClearance": 5,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0133142
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 82,
            "accuratePass": 77,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 4,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0166809
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0341,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.290618
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 47,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 67,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0149,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.032983
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 53,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 7,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0154,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0563967
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 69,
            "rating": 7.2,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.1427,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0935724
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fer L\u00f3pez",
            "slug": "fer-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 80,
            "id": 1526628,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085356800,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 43,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0696,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0104109
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 3,
            "minutesPlayed": 65,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0133364
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "totalContest": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 65,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0439843
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 2,
            "minutesPlayed": 47,
            "touches": 47,
            "rating": 8.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1136,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.316629
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 25,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.3453,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "wasFouled": 2,
            "minutesPlayed": 25,
            "touches": 14,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1516,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0189705
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Luca De La Torre",
            "firstName": "",
            "lastName": "",
            "slug": "luca-de-la-torre",
            "shortName": "L. D. L. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 652,
            "id": 846492,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895881600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u062f\u064a \u0644\u0627 \u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062f. \u0644. \u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "totalContest": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00718471
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Yoel Lago",
            "firstName": "Yoel",
            "lastName": "Lago",
            "slug": "yoel-lago",
            "shortName": "Y. Lago",
            "position": "D",
            "jerseyNumber": "29",
            "height": 185,
            "userCount": 15,
            "id": 1145100,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1080172800,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 27,
            "totalLongBalls": 14,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -1.597
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0163106
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 58,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00508814
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 62,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 69,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0362,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00690271
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 57,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0323,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.106286
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 53,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 7,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0104122
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 38,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 7,
            "dispossessed": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 65,
            "rating": 6.4,
            "possessionLostCtrl": 18,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.085416
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "goalAssist": 0,
            "duelWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 58,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.10144
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 40,
            "rating": 7,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.355596
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 58,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0477,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.128249
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.7121,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.010418
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "dispossessed": 1,
            "interceptionWon": 3,
            "minutesPlayed": 32,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "minutesPlayed": 32,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0099134
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 14,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0526446
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 14,
            "touches": 4,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0166,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.5011
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 86,
            "touches": 60,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0571,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0308532
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 59,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0642,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0286425
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 46,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "shotOffTarget": 2,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0475,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 57,
            "rating": 6.3,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0140811
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 5,
            "fouls": 2,
            "minutesPlayed": 75,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2715,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0345737
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 49,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 6,
            "duelWon": 9,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0434,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0733428
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 58,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 72,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0288,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0457154
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.7963,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.291576
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0617833
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 64,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0262,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00560558
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 27,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.20897
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0399756
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "minutesPlayed": 15,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "totalClearance": 1,
            "minutesPlayed": 10,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0911355
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 10,
            "touches": 8,
            "rating": 7.2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.120094
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 16,
            "totalLongBalls": 17,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelWon": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.6916
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 3,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 1,
            "bigChanceCreated": 2,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.7,
            "possessionLostCtrl": 15,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.248614
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 18,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 8,
            "outfielderBlock": 2,
            "interceptionWon": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalClearance": 7,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 40,
            "rating": 6.3,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1034,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.012656
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00853416
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.04,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0664929
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 13,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 70,
            "touches": 37,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 8,
            "aerialWon": 5,
            "duelLost": 9,
            "duelWon": 6,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 20,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4411,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 77,
            "touches": 32,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0141,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 20,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 20,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1469,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 6,
            "touches": 4,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 3,
            "lastManTackle": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Kike Barja",
            "slug": "kike-barja",
            "shortName": "K. Barja",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 121,
            "id": 591132,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860112000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0631\u062c\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "totalLongBalls": 21,
            "accurateLongBalls": 13,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.041
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00545267
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 9,
            "totalClearance": 6,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 80,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00859433
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 41,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0137936
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "totalTackle": 1,
            "minutesPlayed": 55,
            "touches": 27,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 11,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0178391
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "penaltyWon": 1,
            "totalOffside": 2,
            "minutesPlayed": 71,
            "touches": 28,
            "rating": 7.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.7884,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00792299
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 55,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00547148
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 35,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0283812
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 35,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 19,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0046,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Urko Gonz\u00e1lez",
            "slug": "urko-gonzalez",
            "shortName": "U. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 131,
            "id": 1064009,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985046400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 15,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -1.202
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.101407
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 59,
            "totalLongBalls": 19,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 7,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 5,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 7,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0641,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.017372
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 65,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "ownGoals": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0404,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0143848
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0120755
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Carlos Guirao",
            "firstName": "Carlos",
            "lastName": "Guirao",
            "slug": "carlos-guirao",
            "shortName": "C. Guirao",
            "position": "M",
            "jerseyNumber": "16",
            "userCount": 47,
            "id": 1632259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051401600,
            "proposedMarketValueRaw": {
                "value": 91000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 55,
            "touches": 31,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00779681
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 61,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 92,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0887,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0266751
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Jes\u00fas Rodriguez",
            "slug": "jesus-rodriguez",
            "shortName": "J. Rodriguez",
            "position": "F",
            "jerseyNumber": "36",
            "height": 185,
            "userCount": 180,
            "id": 1800245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1132531200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 11,
            "dispossessed": 2,
            "totalContest": 8,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 6,
            "minutesPlayed": 83,
            "touches": 50,
            "rating": 6.7,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0559,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 44,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 4,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 13,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 5,
            "wasFouled": 6,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.5,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0131,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.263345
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 1,
            "dispossessed": 5,
            "totalContest": 2,
            "wonContest": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 55,
            "touches": 33,
            "rating": 6.2,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.278082
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 10,
            "duelWon": 5,
            "dispossessed": 4,
            "totalContest": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 26,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0219,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "minutesPlayed": 35,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00901195
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "wasFouled": 3,
            "minutesPlayed": 35,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00607176
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 19,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.114,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 21,
            "totalLongBalls": 25,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 5,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.6,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.3327
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.4,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0152929
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 39,
            "totalLongBalls": 13,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 7,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0768,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00681844
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 47,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0138053
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0177,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.01264
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 37,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00822042
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 10,
            "duelWon": 3,
            "challengeLost": 5,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 4,
            "minutesPlayed": 82,
            "touches": 39,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0402004
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0362,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00517191
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 2,
            "totalOffside": 3,
            "minutesPlayed": 65,
            "touches": 19,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1076,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00709822
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 64,
            "touches": 30,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0127,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0811526
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 2,
            "minutesPlayed": 26,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.057858
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 10,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 14,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 13,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 2,
            "totalClearance": 1,
            "minutesPlayed": 8,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pelayo Fern\u00e1ndez",
            "firstName": "",
            "lastName": "",
            "slug": "pelayo-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "27",
            "height": 193,
            "userCount": 220,
            "id": 1139724,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051574400,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 22,
            "totalLongBalls": 17,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": -0.6482
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 56,
            "touches": 48,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0154943
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 91,
            "accuratePass": 68,
            "totalLongBalls": 28,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 6.8,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0212912
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 40,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 9,
            "interceptionWon": 2,
            "totalTackle": 2,
            "errorLeadToAGoal": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 34,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0441,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00695305
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 75,
            "touches": 49,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0136483
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 57,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0286,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.012284
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 64,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 25,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0229,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0548321
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 6,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 13,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 4,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.7,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.3201,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0565051
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 56,
            "touches": 23,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1841,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00950689
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "minutesPlayed": 34,
            "touches": 23,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0109491
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 34,
            "touches": 21,
            "rating": 8.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0946,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.00680641
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 33,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00766171
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai Sim\u00f3n",
            "slug": "unai-simon",
            "shortName": "U. Sim\u00f3n",
            "position": "G",
            "jerseyNumber": "1",
            "height": 189,
            "userCount": 4310,
            "id": 797291,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 865987200,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 38,
            "totalLongBalls": 14,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.0487
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0151,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0170516
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ra\u00fal Asencio",
            "slug": "raul-asencio",
            "shortName": "R. Asencio",
            "position": "D",
            "jerseyNumber": "35",
            "height": 184,
            "userCount": 8387,
            "id": 1156645,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1045094400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 2829,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 71,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 9,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 69,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0585,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.00777986
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1298,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0287453
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 58,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0524,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0197363
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 95,
            "accuratePass": 89,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 110,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0214871
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 38,
            "rating": 7.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.8218,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.00971352
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 3,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.625,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0686985
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 26,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 4,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0837,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0182498
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 4,
            "totalContest": 7,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "bigChanceMissed": 3,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 3,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 1.3928,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.312531
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.383909
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "wasFouled": 2,
            "minutesPlayed": 23,
            "touches": 27,
            "rating": 7.3,
            "possessionLostCtrl": 2,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.145149
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lorenzo Aguado",
            "slug": "lorenzo-aguado-herrera",
            "shortName": "L. Aguado",
            "position": "D",
            "jerseyNumber": "39",
            "height": 177,
            "userCount": 673,
            "id": 1526535,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1032393600,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Diego Aguado Facio",
            "slug": "diego-aguado-facio",
            "shortName": "D. A. Facio",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 565,
            "id": 1614687,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1170806400
        },
        "teamId": 120854,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Chema Andr\u00e9s",
            "firstName": "Chema Andr\u00e9s",
            "slug": "chema-andres",
            "shortName": "C. Andr\u00e9s",
            "position": "M",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 2044,
            "id": 1464641,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 14,
            "totalLongBalls": 23,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.3863
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0222,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00977333
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00584701
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 28,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0179,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0350243
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 9,
            "rating": 5.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0755,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0705803
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0943,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0271822
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0205,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0327572
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 14,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 9,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 34,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "blockedScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 21,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0755,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0263,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "John Patrick",
            "slug": "john-joe-patrick-finn",
            "shortName": "J. Patrick",
            "position": "M",
            "jerseyNumber": "31",
            "height": 192,
            "userCount": 111,
            "id": 1100831,
            "country": {
                "alpha2": "IE",
                "alpha3": "IRL",
                "name": "Ireland",
                "slug": "ireland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064361600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 24,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1167,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00773436
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 12,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0104915
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    }
]
[
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 19,
            "totalLongBalls": 19,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 3,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": -0.5756
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "totalTackle": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 46,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "duelWon": 3,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 41,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00506376
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0456082
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 32,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1553,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0853412
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 41,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2111,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.162211
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 78,
            "touches": 42,
            "rating": 7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0112453
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 44,
            "rating": 7.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.378,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.57235
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1649,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0666201
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 72,
            "touches": 24,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.9246,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0745841
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 11,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00834935
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 8,
            "rating": 7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0606,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0106146
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.2096,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.5892
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 61,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 73,
            "touches": 77,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0252267
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 95,
            "accuratePass": 91,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00778834
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 96,
            "accuratePass": 91,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 107,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.017,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0305558
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.2583,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0127626
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 65,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 79,
            "rating": 7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0515671
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 82,
            "totalLongBalls": 11,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 98,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0852758
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 54,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7.1,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0463,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.161528
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 26,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0229,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0196042
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0236,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0312037
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "fouls": 1,
            "minutesPlayed": 58,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0628,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.189204
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "minutesPlayed": 31,
            "touches": 32,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0111514
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 32,
            "touches": 13,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1164,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0844948
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0116603
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 17,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00708578
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ricard Artero",
            "firstName": "Ricard Artero",
            "lastName": "",
            "slug": "ricard-artero",
            "shortName": "R. Artero",
            "position": "M",
            "jerseyNumber": "36",
            "height": 181,
            "userCount": 52,
            "id": 1134432,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044403200,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 368693,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 34,
            "totalLongBalls": 12,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": 1.0381
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 39,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0234,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00653152
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 57,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 82,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 5,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 100,
            "rating": 6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00846936
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 42,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.3,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 14,
            "totalContest": 6,
            "wonContest": 5,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "wasFouled": 7,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.029,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.19858
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 85,
            "touches": 51,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0455,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.159122
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 3,
            "interceptionWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0533684
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 62,
            "touches": 16,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2683,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 78,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1965,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00607333
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 17,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0464418
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 28,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0632,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0220677
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 8,
            "touches": 15,
            "rating": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00685589
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "C\u00e9sar de la Hoz",
            "firstName": "",
            "lastName": "",
            "slug": "cesar-de-la-hoz",
            "shortName": "C. de la Hoz",
            "position": "M",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 49,
            "id": 233328,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701913600,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.1272
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 49,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.5,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.418483
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 63,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1382,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00501019
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 62,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.9456,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.00612529
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0978246
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 37,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0241,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.388018
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 64,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 64,
            "touches": 80,
            "rating": 7.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.5279,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.112268
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 47,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 79,
            "touches": 63,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0363013
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 46,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 9,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1076,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.16668
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 64,
            "touches": 56,
            "rating": 7.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.6476,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.150767
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 33,
            "rating": 8.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.7959,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.149467
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 2,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 26,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0979732
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "minutesPlayed": 26,
            "touches": 14,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.8405,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.015711
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 5,
            "goalAssist": 1,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 14,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0244,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.597876
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0154292
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 10,
            "totalLongBalls": 20,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": 0.1222
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 10,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "totalTackle": 8,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00614035
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalClearance": 8,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 8.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2167,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 17,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 38,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.234605
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 11,
            "duelWon": 1,
            "dispossessed": 6,
            "totalContest": 2,
            "bigChanceMissed": 2,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 25,
            "rating": 5.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.3725,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            },
            "expectedAssists": 0.0240827
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Justin Smith",
            "firstName": "Justin Smith",
            "slug": "justin-smith",
            "shortName": "J. Smith",
            "position": "M",
            "jerseyNumber": "40",
            "height": 188,
            "userCount": 69,
            "id": 1110904,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 315000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
                }
            }
        },
        "teamId": 37055,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0102087
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0428906
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.200279
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 67,
            "touches": 21,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1178,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00804884
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 29,
            "touches": 7,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 15,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1466,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 2,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Tristan Jimenez",
            "firstName": "",
            "lastName": "",
            "slug": "pol-tristan-jimenez",
            "shortName": "P. T. Jimenez",
            "position": "G",
            "jerseyNumber": "38",
            "height": 188,
            "userCount": 14,
            "id": 962624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016409600,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Edu Exp\u00f3sito",
            "slug": "edu-exposito",
            "shortName": "E. Exp\u00f3sito",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 203,
            "id": 877262,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838857600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648, \u0625\u064a\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 24,
            "rating": 6.2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -1.7667
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 80,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0344,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0269236
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 108,
            "accuratePass": 102,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 6,
            "totalClearance": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 118,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0323549
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 101,
            "accuratePass": 95,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 111,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1092,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0277921
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 39,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.021,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0637019
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 55,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1085,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.219536
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 65,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 79,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0638556
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 73,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 10,
            "dispossessed": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 80,
            "touches": 106,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0524,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.761964
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 49,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0601,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.016912
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 42,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.6,
            "possessionLostCtrl": 18,
            "expectedGoals": 1.0788,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.104799
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1225,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 5.9,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.025,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.00894638
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0519947
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 23,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0371233
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 11,
            "totalLongBalls": 13,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.0483
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "lastManTackle": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 36,
            "rating": 7.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2858,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0881554
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 37,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0789995
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.091,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00749609
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 36,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 3,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.8,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0272079
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 38,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 9,
            "duelWon": 8,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0427075
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 26,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0098,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00545118
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.061,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0852057
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 16,
            "accurateCross": 4,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.6,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.2704,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.343878
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.1,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1189,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.050102
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 28,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1346,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0236505
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 3,
            "minutesPlayed": 20,
            "touches": 19,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0489,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 9,
            "rating": 6.5,
            "expectedGoals": 0.1121,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0263012
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 23,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0205589
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 2,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 11,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.221032
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 13,
            "totalLongBalls": 29,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 5,
            "goodHighClaim": 4,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "punches": 3,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 8.1,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.00562257,
            "goalsPrevented": 0.424
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0619,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00573077
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 11,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 7,
            "totalClearance": 10,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 17,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1487,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 10,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0207881
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 6,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 14,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalContest": 8,
            "wonContest": 7,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "minutesPlayed": 77,
            "touches": 51,
            "rating": 7.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0138,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.755017
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "interceptionWon": 3,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.4545,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.0821567
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "bigChanceCreated": 1,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.199085
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "bigChanceMissed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 82,
            "touches": 24,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1872,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00605505
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 27,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0609,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 8,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Iker Bachiller",
            "firstName": "",
            "lastName": "",
            "slug": "bachiller-iker",
            "shortName": "I. Bachiller",
            "position": "D",
            "jerseyNumber": "28",
            "height": 169,
            "userCount": 3,
            "id": 978652,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031961600,
            "proposedMarketValueRaw": {
                "value": 24000,
                "currency": "EUR"
            }
        },
        "teamId": 262427,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -1.0943
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 56,
            "touches": 56,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0983,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0118443
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 79,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 5,
            "duelLost": 1,
            "duelWon": 6,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "minutesPlayed": 89,
            "touches": 86,
            "rating": 6.8,
            "expectedGoals": 0.3614,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0287276
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 110,
            "accuratePass": 99,
            "totalLongBalls": 12,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 7,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 119,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0193,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0853452
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 22,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0121259
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 2,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 57,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.020923
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 83,
            "accuratePass": 74,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 4,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.2494,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.17714
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "goals": 1,
            "interceptionWon": 2,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 8.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.3364,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8.8,
                "alternative": null
            },
            "expectedAssists": 0.375935
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 57,
            "touches": 24,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1936,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0180013
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.119899
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.5586,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.161483
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 29,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "interceptionWon": 2,
            "minutesPlayed": 64,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.434502
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2773,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.133795
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 34,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00903679
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 33,
            "touches": 28,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.2013,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.137985
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.240241
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 1,
            "keyPass": 1,
            "expectedAssists": 0.15338
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Guillermo Fern\u00e1ndez",
            "firstName": "Guillermo Fern\u00e1ndez",
            "slug": "guillermo-fernandez",
            "shortName": "G. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 171,
            "userCount": 4356,
            "id": 1544614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1213747200,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 15,
            "totalLongBalls": 28,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 7,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.8,
            "possessionLostCtrl": 24,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 0.2452
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 83,
            "touches": 43,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00755864
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 9,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "bigChanceMissed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2931,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 11,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 3,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 47,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0379685
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "goalAssist": 1,
            "aerialWon": 2,
            "duelWon": 5,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 83,
            "touches": 46,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00622275
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 68,
            "touches": 27,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0429618
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "totalOffside": 2,
            "minutesPlayed": 73,
            "touches": 31,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.06,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.20157
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 4,
            "duelLost": 7,
            "duelWon": 4,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0362,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.391538
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 9,
            "totalContest": 8,
            "wonContest": 4,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0162011
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 73,
            "touches": 21,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1134,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0138953
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 22,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 17,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 17,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 16,
            "touches": 2,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 16,
            "rating": 6.3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Adnan Januzaj",
            "slug": "adnan-januzaj",
            "shortName": "A. Januzaj",
            "position": "M",
            "jerseyNumber": "24",
            "height": 186,
            "userCount": 1624,
            "id": 328145,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791942400,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 29,
            "totalLongBalls": 19,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.4008
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 35,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 2,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 69,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0295778
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 50,
            "totalLongBalls": 11,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00504101
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 53,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 3,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0219,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00569919
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.3,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0148665
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 39,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0447,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00645294
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 35,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 19,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 9,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.6,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0264816
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 70,
            "touches": 51,
            "rating": 7.1,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.074,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.20301
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 7,
            "duelWon": 2,
            "dispossessed": 5,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 70,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0456,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0910873
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "lastManTackle": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "minutesPlayed": 85,
            "touches": 47,
            "rating": 7.6,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.207676
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 2,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 24,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2198,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 20,
            "touches": 8,
            "rating": 6.8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 20,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "minutesPlayed": 12,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 7.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.3512,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 9,
            "touches": 2,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pere Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "pere-garcia",
            "shortName": "P. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 9,
            "id": 1002521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 47000,
                "currency": "EUR"
            }
        },
        "teamId": 34997,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 25,
            "totalLongBalls": 12,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -0.4986
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0148,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0158682
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 56,
            "totalLongBalls": 15,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0103205
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 49,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 44,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 7,
            "totalClearance": 4,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 4,
            "minutesPlayed": 84,
            "touches": 67,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jos\u00e9 Luis Gay\u00e0",
            "slug": "jose-luis-gaya",
            "shortName": "J. L. Gay\u00e0",
            "position": "D",
            "jerseyNumber": "14",
            "height": 172,
            "userCount": 1789,
            "id": 227922,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801360000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.5,
            "possessionLostCtrl": 18,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.146987
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 75,
            "touches": 32,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.7884,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0083635
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1245,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00619306
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 75,
            "touches": 66,
            "rating": 6.7,
            "possessionLostCtrl": 19,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.194747
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 13,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 2,
            "shotOffTarget": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.4,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0411,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0338606
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00725915
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 15,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 10,
            "touches": 6,
            "rating": 6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.3331,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 10,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00504201
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jaume Dom\u00e9nech",
            "slug": "jaume-domenech",
            "shortName": "J. Dom\u00e9nech",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 212,
            "id": 235386,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 657763200,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Iker Cordoba",
            "slug": "iker-cordoba",
            "shortName": "I. C\u00f3rdoba",
            "position": "D",
            "jerseyNumber": "38",
            "height": 190,
            "userCount": 32,
            "id": 1563953,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1131667200,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 13,
            "totalLongBalls": 25,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 2,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.0521
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0255013
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0115283
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 3,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00672941
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 27,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 47,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0452,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.187827
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 11,
            "duelWon": 2,
            "challengeLost": 4,
            "dispossessed": 4,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 60,
            "touches": 32,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.3729,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0292904
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "totalContest": 3,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 34,
            "rating": 6.4,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0297,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 9,
            "dispossessed": 4,
            "totalContest": 3,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 40,
            "rating": 8.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3665,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.237921
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "goalAssist": 1,
            "totalCross": 8,
            "accurateCross": 3,
            "duelLost": 12,
            "duelWon": 8,
            "dispossessed": 3,
            "totalContest": 14,
            "wonContest": 5,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.4,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.2151,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 1.08297
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 60,
            "touches": 17,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2863,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 30,
            "touches": 8,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "fouls": 3,
            "minutesPlayed": 30,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0215,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00611388
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai Sim\u00f3n",
            "slug": "unai-simon",
            "shortName": "U. Sim\u00f3n",
            "position": "G",
            "jerseyNumber": "1",
            "height": 189,
            "userCount": 4310,
            "id": 797291,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 865987200,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.5478
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 7,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 7,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 54,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00836016
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 55,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 3,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0146828
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 93,
            "accuratePass": 80,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 10,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 103,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 75,
            "touches": 60,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 66,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 6.8,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.412,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.016735
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 4,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 60,
            "touches": 35,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.101,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0402133
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 11,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 8,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0253,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.11923
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0898,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.447493
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 7,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 4,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 19,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.119372
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0768,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalOffside": 2,
            "minutesPlayed": 30,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "minutesPlayed": 15,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 6,
            "totalLongBalls": 17,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 4,
            "saves": 5,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": -0.479
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 30,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 3,
            "totalClearance": 8,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "totalClearance": 8,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 3,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 5.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0247,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.00514611
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 75,
            "touches": 40,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00760901
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0203418
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 28,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 58,
            "touches": 42,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00612969
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0161,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0154339
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 3,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0306985
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 59,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0465,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00931782
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 5,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 86,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00945975
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 32,
            "touches": 24,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0326,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0120449
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 31,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00828978
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 15,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 8,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Naim Garc\u00eda",
            "firstName": "Naim Garc\u00eda",
            "lastName": "",
            "slug": "naim-garcia",
            "shortName": "N. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 227,
            "id": 1134395,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023753600,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "goodHighClaim": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 62,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "interceptionWon": 3,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 8.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0137,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.195052
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ra\u00fal Asencio",
            "slug": "raul-asencio",
            "shortName": "R. Asencio",
            "position": "D",
            "jerseyNumber": "35",
            "height": 184,
            "userCount": 8387,
            "id": 1156645,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1045094400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 2829,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 43,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0376844
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 73,
            "accuratePass": 64,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 5,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1124,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0367368
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 40,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0154052
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 38,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 60,
            "rating": 8.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.3687,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.185369
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Eduardo Camavinga",
            "firstName": "",
            "lastName": "",
            "slug": "camavinga-eduardo",
            "shortName": "E. Camavinga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 182,
            "userCount": 155041,
            "id": 973887,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036886400,
            "proposedMarketValueRaw": {
                "value": 95000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 65,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0816989
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 89,
            "accuratePass": 85,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 8,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 7.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0401159
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 56,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 82,
            "rating": 8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.3362,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.0843453
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 4,
            "duelLost": 7,
            "duelWon": 10,
            "dispossessed": 4,
            "totalContest": 8,
            "wonContest": 5,
            "bigChanceCreated": 3,
            "shotOffTarget": 1,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 8.5,
            "possessionLostCtrl": 25,
            "expectedGoals": 0.0501,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.712727
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 35,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 83,
            "touches": 61,
            "rating": 7.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.8977,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0459796
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 15,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1235,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0129166
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.230093
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "minutesPlayed": 3,
            "touches": 4,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Diego Aguado Facio",
            "slug": "diego-aguado-facio",
            "shortName": "D. A. Facio",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 565,
            "id": 1614687,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1170806400
        },
        "teamId": 120854,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 2,
            "wasFouled": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0551
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0545,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0344998
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 48,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0081578
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 51,
            "totalLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "totalClearance": 6,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0113039
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 59,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0149143
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 13,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.7,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0365,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.069508
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 52,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0951,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0274806
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 6,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 73,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1037,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00893924
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 37,
            "rating": 7.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.3193,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0482379
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 73,
            "touches": 33,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.121104
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.4412,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.102074
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "shotOffTarget": 1,
            "minutesPlayed": 17,
            "touches": 12,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0253,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "minutesPlayed": 17,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 10,
            "touches": 12,
            "rating": 7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0141,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00634
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Mat\u00edas \u00c1rbol",
            "firstName": "",
            "lastName": "",
            "slug": "matias-arbol",
            "shortName": "M. \u00c1rbol",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 26,
            "id": 1192489,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031788800,
            "proposedMarketValueRaw": {
                "value": 96000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 25,
            "totalLongBalls": 23,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00624823,
            "goalsPrevented": 0.0646
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 29,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0149459
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 42,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 60,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0154,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0118283
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0111094
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 35,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0106487
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 2,
            "duelLost": 4,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 71,
            "touches": 28,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00668523
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 46,
            "touches": 37,
            "rating": 5.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.109,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            },
            "expectedAssists": 0.0251075
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 24,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.223642
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 7,
            "aerialWon": 4,
            "duelLost": 11,
            "duelWon": 8,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 71,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.238,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2672,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0705627
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 19,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.2132,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0248048
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 19,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0154,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 8,
            "touches": 5,
            "rating": 5.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 4,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 19,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "totalClearance": 3,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 8.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "goalsPrevented": 0.5223
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.2,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0650638
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 28,
            "totalLongBalls": 12,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 66,
            "touches": 39,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1338,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0220947
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 39,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 11,
            "duelWon": 10,
            "challengeLost": 3,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 4,
            "penaltyConceded": 1,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0118617
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 47,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.104005
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 66,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.254318
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 8,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 87,
            "touches": 25,
            "rating": 8.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.9188,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.0120142
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 10,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 7,
            "totalContest": 7,
            "wonContest": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 78,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00894574
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "interceptionWon": 1,
            "minutesPlayed": 24,
            "touches": 12,
            "rating": 5.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.00808887
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 24,
            "touches": 17,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0291,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 11,
            "touches": 4,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 10,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Kike Barja",
            "slug": "kike-barja",
            "shortName": "K. Barja",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 121,
            "id": 591132,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860112000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0631\u062c\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.0038
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 44,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0110611
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 48,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 4,
            "totalClearance": 1,
            "penaltyConceded": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0072109
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 43,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "penaltyWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0756,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0985798
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 59,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0422,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.331816
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "goalAssist": 1,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 86,
            "touches": 59,
            "rating": 7.3,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0445,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0748337
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 61,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0691,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0961885
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 72,
            "touches": 58,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0213584
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 33,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 6,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 8.4,
            "possessionLostCtrl": 27,
            "expectedGoals": 0.5518,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.502194
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 10,
            "duelWon": 10,
            "dispossessed": 5,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 3,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.4,
            "possessionLostCtrl": 25,
            "expectedGoals": 0.4815,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0959886
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0234,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.335206
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 1.027,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.165904
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.2105,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0100409
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Antonio Espigares",
            "firstName": "",
            "lastName": "",
            "slug": "espigares-antonio",
            "shortName": "A. Espigares",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 24,
            "id": 1142261,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1094342400,
            "proposedMarketValueRaw": {
                "value": 465000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alassane Diatta",
            "slug": "alassane-diatta",
            "shortName": "A. Diatta",
            "position": "M",
            "jerseyNumber": "29",
            "height": 190,
            "userCount": 78,
            "id": 1893907,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1116028800
        },
        "teamId": 24338,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 20,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "saves": 2,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.9863
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 28,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 4,
            "interceptionWon": 3,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0509407
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 37,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 3,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.010305
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 43,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0814,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0140099
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 42,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.2,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0238,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.537045
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 19,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.5749,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.243334
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00986148
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.009,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.11962
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 28,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1914,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0118697
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 6,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.4229,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.250412
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0656438
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 28,
            "touches": 13,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.6248,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.005782
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 7,
            "rating": 6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.5332,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0237713
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 1,
            "touches": 6,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "expectedAssists": 0.111747
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 33,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 4,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "punches": 1,
            "totalKeeperSweeper": 6,
            "accurateKeeperSweeper": 6,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 8.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "goalsPrevented": 0.6476
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0342138
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 63,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00557313
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 66,
            "totalLongBalls": 16,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00667861
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 40,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00653279
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 39,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.043432
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 65,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 82,
            "touches": 89,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0274,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0322457
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.9756,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0738468
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 75,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.101683
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 41,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 65,
            "rating": 7.2,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0281,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0635438
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 30,
            "rating": 7.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3788,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0265304
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.477874
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 12,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0147118
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 15,
            "touches": 13,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.3338,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00537167
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 1,
            "touches": 5,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Diego Kochen",
            "firstName": "Diego Kochen",
            "lastName": "",
            "slug": "kochen-diego",
            "shortName": "D. Kochen",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 2394,
            "id": 1402907,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1142726400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "\u00c1lvaro Cort\u00e9s",
            "slug": "alvaro-cortes",
            "shortName": "\u00c1. Cort\u00e9s",
            "position": "D",
            "jerseyNumber": "43",
            "height": 189,
            "userCount": 778,
            "id": 1464652,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1111017600,
            "proposedMarketValueRaw": {
                "value": 135000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Noah Darvich",
            "firstName": "Noah Darvich",
            "slug": "darvich-noah",
            "shortName": "N. Darvich",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 5052,
            "id": 1469995,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1159142400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Guillermo Fern\u00e1ndez",
            "firstName": "Guillermo Fern\u00e1ndez",
            "slug": "guillermo-fernandez",
            "shortName": "G. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 171,
            "userCount": 4356,
            "id": 1544614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1213747200,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 36,
            "totalLongBalls": 16,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.3,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -0.8318
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 70,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0391265
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 107,
            "accuratePass": 99,
            "totalLongBalls": 10,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 118,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00918615
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 111,
            "accuratePass": 101,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 116,
            "rating": 7.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.7423,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0287839
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 95,
            "accuratePass": 88,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 118,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0968455
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 71,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "lastManTackle": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.02266
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 64,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 82,
            "touches": 85,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0371,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0795123
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 3,
            "minutesPlayed": 60,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0551,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.289895
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 26,
            "goalAssist": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 3,
            "minutesPlayed": 60,
            "touches": 39,
            "rating": 7.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2096,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 1.04182
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 2,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 45,
            "rating": 9.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0969,
            "keyPass": 3,
            "ratingVersions": {
                "original": 9.1,
                "alternative": null
            },
            "expectedAssists": 1.08647
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 71,
            "touches": 24,
            "rating": 8.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 2.1571,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.00654754
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 41,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 49,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0342047
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 30,
            "touches": 32,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1724,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0958608
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "minutesPlayed": 19,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0400702
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 8,
            "touches": 10,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ricard Artero",
            "firstName": "Ricard Artero",
            "lastName": "",
            "slug": "ricard-artero",
            "shortName": "R. Artero",
            "position": "M",
            "jerseyNumber": "36",
            "height": 181,
            "userCount": 52,
            "id": 1134432,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044403200,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 368693,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Min-su Kim",
            "slug": "min-su-kim",
            "shortName": "M. Kim",
            "position": "F",
            "jerseyNumber": "29",
            "height": 177,
            "userCount": 380,
            "id": 1892528,
            "country": {
                "alpha2": "KR",
                "alpha3": "KOR",
                "name": "South Korea",
                "slug": "south-korea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1137628800
        },
        "teamId": 368693,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 15,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "goalsPrevented": -0.7187
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 29,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0943594
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 6,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0161495
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 26,
            "rating": 6.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00576031
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 9,
            "challengeLost": 3,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 5.6,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            },
            "expectedAssists": 0.0139417
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.3,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.035,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0746607
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 64,
            "touches": 33,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0451,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.014014
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0436384
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0259,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0259686
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.150304
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 26,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0296,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "blockedScoringAttempt": 2,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 16,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.154,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.028332
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 26,
            "touches": 13,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1315,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0131857
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 2,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Justin Smith",
            "firstName": "Justin Smith",
            "slug": "justin-smith",
            "shortName": "J. Smith",
            "position": "M",
            "jerseyNumber": "40",
            "height": 188,
            "userCount": 69,
            "id": 1110904,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 315000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
                }
            }
        },
        "teamId": 37055,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "goalsPrevented": -1.4227
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 50,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 2,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.073901
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 38,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 5.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.00550895
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 44,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0795,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00545612
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "minutesPlayed": 61,
            "touches": 33,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0411,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0358231
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 42,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 61,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0198733
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0528,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0186594
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 76,
            "touches": 52,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0243,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.109543
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 61,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0223,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0292158
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 7,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 8,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "goals": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.8842,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.032856
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 29,
            "touches": 30,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0637906
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 29,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0156914
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 4,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 2,
            "wasFouled": 3,
            "minutesPlayed": 29,
            "touches": 27,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0587,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.102812
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 12,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0191,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.035037
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.024,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 15,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.9794
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 6,
            "minutesPlayed": 85,
            "touches": 57,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00999898
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 27,
            "totalLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 71,
            "touches": 37,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00724457
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 8.1,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.2719,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0356188
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "minutesPlayed": 76,
            "touches": 33,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2844,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0157882
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 4,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0302,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0185374
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.389475
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 3,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 85,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0349,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.175782
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 29,
            "rating": 7.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.6126,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0392555
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 6,
            "duelLost": 3,
            "duelWon": 7,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 88,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4138,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0242864
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 19,
            "touches": 5,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 19,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.156022
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0521,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 15,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 2,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pere Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "pere-garcia",
            "shortName": "P. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 9,
            "id": 1002521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 47000,
                "currency": "EUR"
            }
        },
        "teamId": 34997,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "minutesPlayed": 90,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.3294
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 62,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 98,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0198203
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 75,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0154401
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 60,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 6,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "interceptionWon": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2817,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0133492
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 3,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 5.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.0132694
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0564,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0145281
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 49,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.5,
            "possessionLostCtrl": 22,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0578828
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 61,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 80,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0199,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0433981
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 64,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2252,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0532506
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 59,
            "touches": 30,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.286295
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 2,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 8.1,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.8249,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.253507
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0498,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0147672
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 13,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1875,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0193244
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 26,
            "touches": 41,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.190287
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 20,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 18,
            "totalLongBalls": 25,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 6,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.9,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "goalsPrevented": 0.3226
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 19,
            "totalLongBalls": 10,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 9,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 7,
            "totalTackle": 4,
            "penaltyConceded": 1,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.010137
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "interceptionWon": 4,
            "minutesPlayed": 85,
            "touches": 32,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0061,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 88,
            "touches": 40,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0897483
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "minutesPlayed": 72,
            "touches": 25,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.7884,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 10,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 85,
            "touches": 37,
            "rating": 6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0455,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 9,
            "duelLost": 8,
            "duelWon": 11,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "totalOffside": 2,
            "minutesPlayed": 73,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 10,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 17,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0162,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "fouls": 2,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 4,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0261743
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 15,
            "totalLongBalls": 27,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.2,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00508061,
            "goalsPrevented": -1.337
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.1,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0078475
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 9,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.382,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 47,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 8,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0111564
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jos\u00e9 Luis Gay\u00e0",
            "slug": "jose-luis-gaya",
            "shortName": "J. L. Gay\u00e0",
            "position": "D",
            "jerseyNumber": "14",
            "height": 172,
            "userCount": 1789,
            "id": 227922,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801360000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.216802
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "minutesPlayed": 89,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0212,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.360159
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 46,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 70,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0344,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0080871
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 8,
            "wasFouled": 1,
            "minutesPlayed": 82,
            "touches": 66,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0155,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.186123
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "goals": 1,
            "totalOffside": 2,
            "minutesPlayed": 74,
            "touches": 35,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.2454,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0102264
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 9,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "ownGoals": 1,
            "wasFouled": 5,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 34,
            "rating": 9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.8288,
            "keyPass": 1,
            "ratingVersions": {
                "original": 9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 11,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0589,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0107528
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "totalOffside": 1,
            "minutesPlayed": 16,
            "touches": 3,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.011675
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 8,
            "touches": 5,
            "rating": 7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0210363
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jaume Dom\u00e9nech",
            "slug": "jaume-domenech",
            "shortName": "J. Dom\u00e9nech",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 212,
            "id": 235386,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 657763200,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Iker Cordoba",
            "slug": "iker-cordoba",
            "shortName": "I. C\u00f3rdoba",
            "position": "D",
            "jerseyNumber": "38",
            "height": 190,
            "userCount": 32,
            "id": 1563953,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1131667200,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Warren Madrigal",
            "firstName": "Warren Madrigal",
            "slug": "madrigal-warren",
            "shortName": "W. Madrigal",
            "position": "F",
            "jerseyNumber": "42",
            "height": 185,
            "userCount": 663,
            "id": 1102593,
            "country": {
                "alpha2": "CR",
                "alpha3": "CRI",
                "name": "Costa Rica",
                "slug": "costa-rica"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090627200,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0056616,
            "goalsPrevented": -1.5198
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 48,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 6.2,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0339913
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 48,
            "totalLongBalls": 16,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1078,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0419053
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 44,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 7,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.2,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0328855
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 36,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.1,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00929568
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 59,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.326487
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Carlos Guirao",
            "firstName": "Carlos",
            "lastName": "Guirao",
            "slug": "carlos-guirao",
            "shortName": "C. Guirao",
            "position": "M",
            "jerseyNumber": "16",
            "userCount": 47,
            "id": 1632259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051401600,
            "proposedMarketValueRaw": {
                "value": 91000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 57,
            "touches": 33,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00695644
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 58,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.122603
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 2,
            "totalTackle": 1,
            "minutesPlayed": 57,
            "touches": 17,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 6,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "outfielderBlock": 2,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 48,
            "rating": 6.6,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.359,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0138147
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 81,
            "touches": 24,
            "rating": 6.1,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0144585
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 33,
            "touches": 45,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.222334
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 17,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0667,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0190575
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 32,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.4396,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0250796
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "minutesPlayed": 22,
            "touches": 6,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0051541
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "totalOffside": 2,
            "minutesPlayed": 9,
            "touches": 9,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 10,
            "totalLongBalls": 22,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.774
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 60,
            "rating": 8.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.2822,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.105206
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0136712
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 28,
            "totalLongBalls": 12,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 4,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.103076
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 29,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelWon": 4,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.5,
            "possessionLostCtrl": 16,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.502255
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 6,
            "aerialWon": 1,
            "duelLost": 12,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 55,
            "touches": 37,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00650176
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0074203
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 47,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.7,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0655,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.132735
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 27,
            "rating": 7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.149001
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 8,
            "aerialWon": 5,
            "duelLost": 10,
            "duelWon": 6,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 65,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0797,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0104758
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 9,
            "aerialWon": 5,
            "duelLost": 16,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0912,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0204787
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 35,
            "touches": 27,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 4,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalOffside": 1,
            "minutesPlayed": 25,
            "touches": 10,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0691,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00541218
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 1,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 16,
            "totalLongBalls": 28,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 3,
            "wasFouled": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": -1.2067
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0451,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0533783
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 13,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 7,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00670159
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 23,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 20,
            "totalLongBalls": 9,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 5,
            "shotOffTarget": 1,
            "totalClearance": 11,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0536,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 11,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 9,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.3,
            "possessionLostCtrl": 23,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0624016
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.048,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.770139
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 6,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 30,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.5123,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 11,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 5,
            "wasFouled": 5,
            "fouls": 6,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0352,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0650809
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "minutesPlayed": 66,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 8,
            "aerialWon": 4,
            "duelLost": 10,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "minutesPlayed": 85,
            "touches": 18,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.4377,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00818512
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00542097
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "errorLeadToAGoal": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 24,
            "touches": 10,
            "rating": 5.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 3,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "C\u00e9sar de la Hoz",
            "firstName": "",
            "lastName": "",
            "slug": "cesar-de-la-hoz",
            "shortName": "C. de la Hoz",
            "position": "M",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 49,
            "id": 233328,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701913600,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 33,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "goodHighClaim": 4,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.461
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 41,
            "totalLongBalls": 17,
            "accurateLongBalls": 14,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0260737
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 55,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 8,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 45,
            "totalLongBalls": 12,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0106869
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 82,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0165,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.15876
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 61,
            "touches": 24,
            "rating": 7.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0354,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.467901
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Justin Smith",
            "firstName": "Justin Smith",
            "slug": "justin-smith",
            "shortName": "J. Smith",
            "position": "M",
            "jerseyNumber": "40",
            "height": 188,
            "userCount": 69,
            "id": 1110904,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 315000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
                }
            }
        },
        "teamId": 37055,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 8,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 43,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00519992
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.4,
            "possessionLostCtrl": 20,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.1244
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "blockedScoringAttempt": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.5,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1385,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.085765
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 4,
            "minutesPlayed": 61,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1245,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0252173
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 12,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 3,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "hitWoodwork": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "expectedGoals": 1.7444,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0369945
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0208116
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 29,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.117531
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 8,
            "touches": 7,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Edu Exp\u00f3sito",
            "slug": "edu-exposito",
            "shortName": "E. Exp\u00f3sito",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 203,
            "id": 877262,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838857600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648, \u0625\u064a\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 8,
            "totalLongBalls": 25,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.5,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": 0.3071
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0124354
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 52,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00535749
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 35,
            "totalLongBalls": 10,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 5,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7,
            "possessionLostCtrl": 20,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0761069
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 59,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 85,
            "touches": 67,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0510198
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 38,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 53,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0105329
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 68,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0462,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.493339
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 39,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 7,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0363,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0300235
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "hitWoodwork": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 85,
            "touches": 44,
            "rating": 7.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.7942,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.142069
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 8,
            "aerialWon": 2,
            "duelLost": 13,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.8598,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0403639
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 33,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 22,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0457,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0732493
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.141,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0356511
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Iker Cordoba",
            "slug": "iker-cordoba",
            "shortName": "I. C\u00f3rdoba",
            "position": "D",
            "jerseyNumber": "38",
            "height": 190,
            "userCount": 32,
            "id": 1563953,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1131667200,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 6.7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0291914
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 13,
            "rating": 7.2,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0629,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jaume Dom\u00e9nech",
            "slug": "jaume-domenech",
            "shortName": "J. Dom\u00e9nech",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 212,
            "id": 235386,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 657763200,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rub\u00e9n Iranzo",
            "slug": "ruben-iranzo",
            "shortName": "R. Iranzo",
            "position": "D",
            "jerseyNumber": "31",
            "height": 182,
            "userCount": 48,
            "id": 1167704,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047600000,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 16,
            "totalLongBalls": 21,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 2,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": -0.2857
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 19,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 8,
            "challengeLost": 5,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 4,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 61,
            "touches": 44,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.15213
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 3,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.053,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.7,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0137511
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 11,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 36,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 2,
            "totalClearance": 4,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00934841
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0894,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0629579
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "duelLost": 7,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 4,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2382,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0309313
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 61,
            "touches": 31,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0429,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0382569
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 20,
            "rating": 7.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.6095,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.122211
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.9067,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0419875
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 29,
            "touches": 17,
            "rating": 7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0226352
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 17,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0567,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0165378
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0283,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 59,
            "totalLongBalls": 12,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 3,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "punches": 1,
            "totalKeeperSweeper": 4,
            "accurateKeeperSweeper": 4,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.3438
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 57,
            "rating": 6.4,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.014806
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 78,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 6,
            "duelLost": 3,
            "duelWon": 8,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "lastManTackle": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 94,
            "rating": 7.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2313,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.00725152
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 109,
            "accuratePass": 93,
            "totalLongBalls": 10,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 119,
            "rating": 6.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0481,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.170171
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 50,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 4,
            "duelWon": 10,
            "challengeLost": 1,
            "totalContest": 8,
            "wonContest": 5,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0210857
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 60,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0387,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0308308
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 38,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.026,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.032169
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 69,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1761,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0143224
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 46,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 4,
            "minutesPlayed": 89,
            "touches": 76,
            "rating": 7.1,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0381,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.605657
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0203,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.275713
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0760061
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0652,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0160279
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 21,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00972912
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 11,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00885532
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 2
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Andr\u00e9s Cuenca",
            "firstName": "Andr\u00e9s Cuenca",
            "slug": "andres-cuenca",
            "shortName": "A. Cuenca",
            "position": "D",
            "jerseyNumber": "27",
            "height": 181,
            "userCount": 4193,
            "id": 1503832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1181520000,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 11,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 22,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.6441
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.8,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.0169,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0271917
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 51,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "totalClearance": 2,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00799998
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 45,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0445,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0180558
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 35,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0055,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.157093
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 39,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0333818
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0232,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0403262
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 38,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.3,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0239,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0335446
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 64,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1293,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0202309
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 12,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 4,
            "wasFouled": 1,
            "fouls": 4,
            "totalOffside": 1,
            "minutesPlayed": 85,
            "touches": 36,
            "rating": 6.2,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0280405
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.3674,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 26,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 26,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00686817
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 10,
            "touches": 1,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "John Patrick",
            "slug": "john-joe-patrick-finn",
            "shortName": "J. Patrick",
            "position": "M",
            "jerseyNumber": "31",
            "height": 192,
            "userCount": 111,
            "id": 1100831,
            "country": {
                "alpha2": "IE",
                "alpha3": "IRL",
                "name": "Ireland",
                "slug": "ireland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064361600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 25,
            "totalLongBalls": 21,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.6,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0202577
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 64,
            "totalLongBalls": 13,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 1,
            "totalClearance": 12,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0218701
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 73,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00588919
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 51,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0157517
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 9,
            "duelWon": 11,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 5,
            "fouls": 4,
            "minutesPlayed": 73,
            "touches": 45,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1356,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 47,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00879627
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 51,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.237324
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "minutesPlayed": 73,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.03,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.03221
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 73,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ferr\u00e1n Ruiz",
            "firstName": "",
            "lastName": "",
            "slug": "ferran-ruiz",
            "shortName": "F. Ruiz",
            "position": "D",
            "jerseyNumber": "45",
            "height": 172,
            "userCount": 50,
            "id": 1119702,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051315200
        },
        "teamId": 368693,
        "shirtNumber": 45,
        "jerseyNumber": "45",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 17,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 16,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0243,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 17,
            "touches": 11,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0050081
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Min-su Kim",
            "slug": "min-su-kim",
            "shortName": "M. Kim",
            "position": "F",
            "jerseyNumber": "29",
            "height": 177,
            "userCount": 380,
            "id": 1892528,
            "country": {
                "alpha2": "KR",
                "alpha3": "KOR",
                "name": "South Korea",
                "slug": "south-korea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1137628800
        },
        "teamId": 368693,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 1,
            "touches": 6,
            "possessionLostCtrl": 2
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Lucas Garc\u00eda",
            "firstName": "Lucas Garc\u00eda",
            "slug": "lucas-garcia",
            "shortName": "L. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "42",
            "userCount": 22,
            "id": 1971651,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1087516800
        },
        "teamId": 368693,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Dawda Camara",
            "firstName": "Dawda Camara",
            "lastName": "",
            "slug": "dawda-camara",
            "shortName": "D. Camara",
            "position": "F",
            "jerseyNumber": "46",
            "height": 175,
            "userCount": 80,
            "id": 1151851,
            "country": {
                "alpha2": "MR",
                "alpha3": "MRT",
                "name": "Mauritania",
                "slug": "mauritania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036368000,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0648\u062f\u0627 \u0643\u0645\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0645\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 368693,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jastin Garc\u00eda",
            "slug": "jastin-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "31",
            "height": 180,
            "userCount": 140,
            "id": 1518119,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1074211200
        },
        "teamId": 368693,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Papa Dame Ba",
            "slug": "papa-dame-ba",
            "shortName": "P. D. Ba",
            "position": "F",
            "jerseyNumber": "44",
            "height": 175,
            "userCount": 112,
            "id": 1897196,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1094947200
        },
        "teamId": 24264,
        "shirtNumber": 44,
        "jerseyNumber": "44",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 34,
            "totalLongBalls": 24,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00621569,
            "goalsPrevented": -0.1456
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0841618
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 22,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0334,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 12,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1755,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00732075
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 26,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3063,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.12188
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 89,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 76,
            "touches": 44,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0282,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.129213
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 6,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 29,
            "touches": 10,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.25094
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 11,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0665,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "challengeLost": 2,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 6,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 8,
            "touches": 3,
            "rating": 6.1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 8,
            "touches": 1,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.1402
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 53,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 3,
            "aerialLost": 3,
            "duelLost": 5,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 7.3,
            "possessionLostCtrl": 14,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.494962
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 54,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0131,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0116033
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 77,
            "totalLongBalls": 13,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 3,
            "totalClearance": 4,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0189519
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 41,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0467,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0167191
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0271527
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 33,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0189,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.17523
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 7,
            "wonContest": 3,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 80,
            "touches": 44,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0611,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0158525
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 45,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0315,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00720673
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 8,
            "wonContest": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.8,
            "possessionLostCtrl": 26,
            "expectedGoals": 0.3991,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.141087
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "totalOffside": 1,
            "minutesPlayed": 64,
            "touches": 28,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0737,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.171612
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 46,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 56,
            "rating": 7.6,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.209001
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1896,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 4,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0296766
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 26,
            "touches": 11,
            "rating": 7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.3743,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 10,
            "touches": 2,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.0478
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 26,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "errorLeadToAGoal": 1,
            "wasFouled": 2,
            "minutesPlayed": 75,
            "touches": 57,
            "rating": 6.3,
            "possessionLostCtrl": 17,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0510176
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 72,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0117,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0203997
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 78,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 4,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.100549
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0212403
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 43,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0499,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0163797
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 58,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 74,
            "rating": 7.5,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.123155
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 71,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0272,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.122777
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 33,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 4,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 69,
            "touches": 51,
            "rating": 7.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0376,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.246307
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 69,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0515,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 10,
            "duelLost": 6,
            "duelWon": 14,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 4,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2355,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0616017
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "minutesPlayed": 21,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0602,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 10,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.133,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 15,
            "touches": 14,
            "rating": 7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.014036
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "minutesPlayed": 15,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0103829
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 12,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00824984
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 7.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "goalsPrevented": 0.2178
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 46,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 6.9,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0119291
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 41,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00515928
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 63,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 51,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 11,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00648927
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 30,
            "goalAssist": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 62,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.214257
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 40,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0612762
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 59,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.6,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.176117
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 30,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 8,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 52,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1504,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0434899
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "minutesPlayed": 62,
            "touches": 38,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0174489
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 34,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.4043,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.022122
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "minutesPlayed": 28,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0326,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 28,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "totalOffside": 1,
            "minutesPlayed": 28,
            "touches": 16,
            "rating": 6.2,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalClearance": 2,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 21,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0608,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -0.7751
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 54,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0584175
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 39,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelWon": 4,
            "totalClearance": 3,
            "minutesPlayed": 55,
            "touches": 50,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0205557
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 63,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 4,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0293,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00604413
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 42,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.1,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0348,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0134553
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 35,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 75,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0655,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.225189
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 87,
            "accuratePass": 79,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0988,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0429328
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 55,
            "touches": 50,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.17104
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 7,
            "wonContest": 5,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "minutesPlayed": 86,
            "touches": 55,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.26,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.186397
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "interceptionWon": 2,
            "minutesPlayed": 86,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0548563
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 9,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.6789,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.00841457
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 35,
            "touches": 27,
            "rating": 7.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.272,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 35,
            "touches": 42,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0552,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.155442
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 10,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 12,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0101,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.014615
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "minutesPlayed": 12,
            "touches": 2,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.290601
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Busto",
            "firstName": "Pablo Busto",
            "lastName": "",
            "slug": "pablo-busto",
            "shortName": "P. Busto",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 29,
            "id": 1464647,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126742400,
            "proposedMarketValueRaw": {
                "value": 315000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nobel Mendy",
            "slug": "mendy-nobel",
            "shortName": "N. Mendy",
            "position": "D",
            "jerseyNumber": "32",
            "height": 187,
            "userCount": 176,
            "id": 1458073,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 12,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 2,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 2,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": -0.0734
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0902,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0281449
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 53,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 7,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 58,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 3,
            "totalClearance": 9,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00548717
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 58,
            "touches": 41,
            "rating": 6.2,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0072906
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 11,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 5,
            "wonContest": 1,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.6,
            "possessionLostCtrl": 18,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.530662
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2189,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.023535
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalOffside": 1,
            "minutesPlayed": 67,
            "touches": 20,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00824722
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 9,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 5,
            "wasFouled": 4,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 28,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0119168
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 23,
            "touches": 13,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.9419,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 11,
            "touches": 12,
            "rating": 7.2,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.588905
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 17,
            "totalLongBalls": 30,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 2,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.6,
            "possessionLostCtrl": 26,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": 0.0782
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00951409
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 39,
            "totalLongBalls": 15,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalClearance": 9,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0271258
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 41,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 47,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0129045
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 76,
            "touches": 47,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00853884
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 9,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 3,
            "penaltyWon": 1,
            "minutesPlayed": 89,
            "touches": 49,
            "rating": 7.4,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0137143
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 76,
            "touches": 27,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0205,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.15235
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0208,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0136132
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 6,
            "duelLost": 13,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 6,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0739,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 3,
            "goals": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 90,
            "touches": 20,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.8982,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "totalOffside": 1,
            "minutesPlayed": 23,
            "touches": 14,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 14,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0352,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "minutesPlayed": 14,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 8,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Naim Garc\u00eda",
            "firstName": "Naim Garc\u00eda",
            "lastName": "",
            "slug": "naim-garcia",
            "shortName": "N. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 227,
            "id": 1134395,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023753600,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 27,
            "totalLongBalls": 20,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.2407
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 38,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "interceptionWon": 6,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 88,
            "touches": 79,
            "rating": 6.9,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0502417
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.5,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 43,
            "totalLongBalls": 10,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0466,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00857149
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 40,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 5,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 88,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0183,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0321895
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 10,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 2,
            "interceptionWon": 3,
            "totalTackle": 4,
            "penaltyConceded": 1,
            "fouls": 2,
            "minutesPlayed": 81,
            "touches": 57,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00644486
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 54,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 4,
            "dispossessed": 4,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1447,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.153305
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2298,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.20076
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 12,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 4,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.3,
            "possessionLostCtrl": 27,
            "expectedGoals": 0.079,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 30,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0609,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0835189
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 17,
            "touches": 17,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 2,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Mat\u00edas \u00c1rbol",
            "firstName": "",
            "lastName": "",
            "slug": "matias-arbol",
            "shortName": "M. \u00c1rbol",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 26,
            "id": 1192489,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031788800,
            "proposedMarketValueRaw": {
                "value": 96000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Ram\u00f3n Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "ramon-martinez",
            "shortName": "R. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 33,
            "id": 1090681,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035244800,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isra Dominguez",
            "firstName": "",
            "lastName": "",
            "slug": "dominguez-isra",
            "shortName": "I. Dom\u00ednguez",
            "position": "M",
            "jerseyNumber": "41",
            "height": 175,
            "userCount": 18,
            "id": 1487790,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 220000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.5602
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 24,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 66,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00880093
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 62,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 5,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0114066
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0939,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0470123
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.085,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00647183
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 6,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 46,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1838,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.171069
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 61,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.7884,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0423686
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0613,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0895982
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 73,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0584526
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 85,
            "touches": 30,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0347,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0253839
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 41,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 66,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0130167
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0483945
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 17,
            "touches": 14,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.2168,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 17,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0519,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0086838
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0586849
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 11,
            "totalLongBalls": 22,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "goodHighClaim": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.1,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "goalsPrevented": -1.1922
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 13,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.1,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0154,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 27,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0152036
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0751,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0424,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0230476
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 35,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0100784
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0159,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0525075
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0279,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0506664
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 68,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1726,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 52,
            "touches": 20,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0224,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 10,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 76,
            "touches": 27,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1126,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0317896
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 38,
            "touches": 17,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0124,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0936579
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0402805
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 22,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00808885
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 14,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "bigChanceCreated": 1,
            "goodHighClaim": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0177114
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "minutesPlayed": 30,
            "touches": 23,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 96,
            "accuratePass": 90,
            "totalLongBalls": 14,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0255489
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 56,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0673,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0170518
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 51,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1416,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0219914
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Eduardo Camavinga",
            "firstName": "",
            "lastName": "",
            "slug": "camavinga-eduardo",
            "shortName": "E. Camavinga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 182,
            "userCount": 155041,
            "id": 973887,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036886400,
            "proposedMarketValueRaw": {
                "value": 95000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0568,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0151812
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 44,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 64,
            "rating": 8.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4598,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.0190618
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 20,
            "touches": 20,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0151,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0387606
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 35,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 9,
            "wonContest": 6,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 3,
            "wasFouled": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.282,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.127902
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 12,
            "dispossessed": 1,
            "totalContest": 12,
            "wonContest": 7,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 4,
            "blockedScoringAttempt": 1,
            "goals": 3,
            "totalTackle": 1,
            "wasFouled": 4,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 71,
            "rating": 10,
            "possessionLostCtrl": 19,
            "expectedGoals": 2.0233,
            "keyPass": 2,
            "ratingVersions": {
                "original": 10,
                "alternative": null
            },
            "expectedAssists": 0.242853
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 43,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 73,
            "rating": 7.5,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0234,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.284828
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ra\u00fal Asencio",
            "slug": "raul-asencio",
            "shortName": "R. Asencio",
            "position": "D",
            "jerseyNumber": "35",
            "height": 184,
            "userCount": 8387,
            "id": 1156645,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1045094400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 2829,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 43,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "minutesPlayed": 60,
            "touches": 52,
            "rating": 7.4,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.261545
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0219977
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00606944
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 3,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 16,
            "totalLongBalls": 21,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.5187
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "lastManTackle": 1,
            "totalTackle": 5,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0126524
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 5.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0099,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00726619
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 24,
            "rating": 6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0118727
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0051637
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 34,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00564292
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 59,
            "touches": 14,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 5,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 8,
            "duelWon": 1,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 1,
            "minutesPlayed": 82,
            "touches": 23,
            "rating": 5.9,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.0367434
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 31,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 19,
            "touches": 16,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 19,
            "touches": 16,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0103678
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00611777
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 8,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0397,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0226724
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -1.9809
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 49,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 7,
            "wonContest": 5,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 7,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.1151,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.043973
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 7,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 2,
            "ownGoals": 1,
            "wasFouled": 2,
            "minutesPlayed": 71,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0298,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00917301
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 70,
            "totalLongBalls": 14,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 6,
            "duelWon": 9,
            "challengeLost": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 3,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1115,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0799403
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 77,
            "touches": 65,
            "rating": 6.4,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.4127,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0921813
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 3,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.1041,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.200872
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2579,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0257716
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 4,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 52,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2128,
            "keyPass": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.300637
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 32,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "shotOffTarget": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.28,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.121095
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "wasFouled": 1,
            "minutesPlayed": 77,
            "touches": 36,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1163,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.249733
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 71,
            "touches": 38,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.5429,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.30554
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 19,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0627039
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 19,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2306,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0378805
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0134582
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 13,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.016,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0393715
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 13,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0434,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00984861
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pelayo Fern\u00e1ndez",
            "firstName": "",
            "lastName": "",
            "slug": "pelayo-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "27",
            "height": 193,
            "userCount": 220,
            "id": 1139724,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051574400,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Joni Montiel",
            "slug": "joni-montiel",
            "shortName": "J. Montiel",
            "position": "M",
            "jerseyNumber": "25",
            "height": 173,
            "userCount": 55,
            "id": 827491,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 904780800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 20,
            "totalLongBalls": 25,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 5,
            "saves": 6,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.6,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.1445
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 4,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0063435
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 14,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 9,
            "outfielderBlock": 3,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 16,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "ownGoals": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.2515,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00578308
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 10,
            "challengeLost": 2,
            "totalClearance": 8,
            "outfielderBlock": 3,
            "interceptionWon": 2,
            "totalTackle": 7,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0468,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.054166
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 52,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0592618
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "errorLeadToAShot": 2,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 79,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0296,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00849999
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 31,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0515,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.31319
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 12,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1519,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 64,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0318,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00873327
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 26,
            "touches": 15,
            "rating": 7.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0402,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0913599
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0177,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0695573
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0805913
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.2839,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 1,
            "touches": 3
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 14,
            "totalLongBalls": 17,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.0091000000000001
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 33,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelWon": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 51,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00948104
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 17,
            "rating": 5.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 5.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0159006
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 5,
            "clearanceOffLine": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 8.2,
            "possessionLostCtrl": 13,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.0832913
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 74,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1415,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.717432
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 32,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 11,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 5,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.2,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1109,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0111436
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 42,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0587,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0276229
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 63,
            "touches": 40,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.132844
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 9,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 74,
            "touches": 24,
            "rating": 7.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1477,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.41688
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "duelLost": 11,
            "duelWon": 10,
            "dispossessed": 3,
            "totalContest": 7,
            "wonContest": 3,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 3,
            "wasFouled": 4,
            "minutesPlayed": 83,
            "touches": 48,
            "rating": 7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.5997,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0155207
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 27,
            "touches": 15,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.3136,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Foyth",
            "firstName": "",
            "lastName": "",
            "slug": "juan-foyth",
            "shortName": "J. Foyth",
            "position": "D",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 3930,
            "id": 873189,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884563200,
            "proposedMarketValueRaw": {
                "value": 12900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0648\u064a\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 16,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00615403
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 2,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0823944
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thiago Ojeda",
            "firstName": "Thiago Ojeda",
            "lastName": "",
            "slug": "thiago-ojeda",
            "shortName": "T. Ojeda",
            "position": "M",
            "jerseyNumber": "38",
            "height": 188,
            "userCount": 94,
            "id": 1116580,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042329600,
            "proposedMarketValueRaw": {
                "value": 245000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0103,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0093953
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Rub\u00e9n G\u00f3mez",
            "firstName": "Rub\u00e9n G\u00f3mez Peris",
            "lastName": "",
            "slug": "ruben-gomez",
            "shortName": "R. G\u00f3mez",
            "position": "G",
            "jerseyNumber": "55",
            "height": 185,
            "userCount": 23,
            "id": 1407702,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1011830400,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 55,
        "jerseyNumber": "55",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnau Sol\u00e0",
            "firstName": "",
            "lastName": "",
            "slug": "arnau-sola",
            "shortName": "A. Sol\u00e0",
            "position": "D",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 80,
            "id": 997025,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049414400,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
                }
            }
        },
        "teamId": 24338,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Etta Eyong",
            "firstName": "Etta Eyong",
            "lastName": "",
            "slug": "etta-eyong",
            "shortName": "E. Eyong",
            "position": "F",
            "jerseyNumber": "36",
            "height": 181,
            "userCount": 188,
            "id": 1393673,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1072915200,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 1.2908
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 57,
            "touches": 44,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0316943
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "shotOffTarget": 2,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0833,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.199659
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0241,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 37,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 84,
            "touches": 85,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1681,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0309741
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 11,
            "duelWon": 7,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0905,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0310612
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "blockedScoringAttempt": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 57,
            "touches": 33,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0164,
            "keyPass": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.161032
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.5371,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.116906
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 10,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 6,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 63,
            "touches": 45,
            "rating": 6.2,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0383833
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.4,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.3293,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.122684
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 63,
            "touches": 33,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1978,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.206229
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 33,
            "touches": 31,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0459,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0181057
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0387706
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 41,
            "rating": 7,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.266841
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 13,
            "rating": 7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0579373
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Joni Montiel",
            "slug": "joni-montiel",
            "shortName": "J. Montiel",
            "position": "M",
            "jerseyNumber": "25",
            "height": 173,
            "userCount": 55,
            "id": 827491,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 904780800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.3055
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 56,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 89,
            "accuratePass": 77,
            "totalLongBalls": 13,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 7,
            "duelLost": 5,
            "duelWon": 12,
            "totalContest": 1,
            "totalClearance": 8,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 109,
            "rating": 7.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0193855
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 46,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0457,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.228638
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 68,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 12,
            "duelWon": 3,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.059899
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "minutesPlayed": 75,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0917,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00981475
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 4,
            "totalContest": 4,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 43,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 8.3,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0876,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.811801
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 67,
            "touches": 30,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 1.3179,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.118181
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0285,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00589571
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "goalAssist": 0,
            "duelLost": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 20,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.253,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0323182
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "totalOffside": 1,
            "minutesPlayed": 23,
            "touches": 11,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1227,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.018613
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 15,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00562815
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 1,
            "touches": 4,
            "possessionLostCtrl": 3
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fer L\u00f3pez",
            "slug": "fer-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 80,
            "id": 1526628,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085356800,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 28,
            "totalLongBalls": 24,
            "accurateLongBalls": 14,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.6013
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 35,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0581486
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 24,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00715948
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 48,
            "totalLongBalls": 15,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.1,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.170263
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 31,
            "touches": 13,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 3,
            "totalContest": 6,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.081,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0568473
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0906,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.11009
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0166897
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 2,
            "totalContest": 2,
            "totalTackle": 1,
            "wasFouled": 6,
            "minutesPlayed": 62,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00671998
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 6,
            "duelLost": 8,
            "duelWon": 10,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 31,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2985,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0192864
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 34,
            "touches": 36,
            "rating": 6.1,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 12,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 10,
            "duelLost": 12,
            "duelWon": 12,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 59,
            "touches": 32,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0852,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0339284
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 28,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 6,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 19,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 13,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.2702
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.111006
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 67,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0631,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0110844
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 59,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1654,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00619113
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 46,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 9,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00857324
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 33,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 69,
            "touches": 54,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.222041
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 35,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 7,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 55,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1299,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00879086
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 9,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 8.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.5755,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 1.21178
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 3,
            "shotOffTarget": 3,
            "hitWoodwork": 1,
            "wasFouled": 2,
            "minutesPlayed": 69,
            "touches": 32,
            "rating": 6,
            "possessionLostCtrl": 8,
            "expectedGoals": 1.5326,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00614245
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 13,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 5,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0392,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.257492
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 65,
            "touches": 18,
            "rating": 7,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.287123
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 25,
            "touches": 20,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.3904,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0240925
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 1,
            "bigChanceMissed": 2,
            "onTargetScoringAttempt": 2,
            "minutesPlayed": 21,
            "touches": 27,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.7852,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0100791
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.3325,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 37,
            "totalLongBalls": 18,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 7,
            "saves": 7,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 8.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "goalsPrevented": 2.3779
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 58,
            "totalLongBalls": 13,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "minutesPlayed": 89,
            "touches": 81,
            "rating": 6.4,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00682413
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 78,
            "totalLongBalls": 12,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 7,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00672589
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 7,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 38,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1504,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0882068
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 47,
            "rating": 7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 9,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0228682
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0321,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00853912
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0213724
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 25,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0188,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00901559
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 45,
            "touches": 41,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00636582
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.14,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00972357
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1105,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0329264
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 18,
            "touches": 2,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.3909,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 26,
            "totalLongBalls": 28,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.3,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -0.8507
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 46,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 4,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0211,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0354253
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 41,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 53,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 55,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.6,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 38,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.9,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0875756
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 30,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0181855
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 57,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 69,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0285103
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 7,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.3,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.1657,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0430815
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 73,
            "touches": 24,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00523675
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 25,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0995,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0104641
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 33,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 65,
            "touches": 58,
            "rating": 6.7,
            "possessionLostCtrl": 17,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.039527
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 17,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0239,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isra Dominguez",
            "firstName": "",
            "lastName": "",
            "slug": "dominguez-isra",
            "shortName": "I. Dom\u00ednguez",
            "position": "M",
            "jerseyNumber": "41",
            "height": 175,
            "userCount": 18,
            "id": 1487790,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 220000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 17,
            "touches": 3,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 10,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.7791,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Mat\u00edas \u00c1rbol",
            "firstName": "",
            "lastName": "",
            "slug": "matias-arbol",
            "shortName": "M. \u00c1rbol",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 26,
            "id": 1192489,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031788800,
            "proposedMarketValueRaw": {
                "value": 96000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Ram\u00f3n Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "ramon-martinez",
            "shortName": "R. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 33,
            "id": 1090681,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035244800,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 21,
            "totalLongBalls": 14,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 9,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 5,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.4,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00603879
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 48,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 53,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 11,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0721,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0071798
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 41,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 8,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 4,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0962,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0121902
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 80,
            "touches": 49,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.2318,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.11418
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 80,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0402,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0231,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 2,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 56,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0077,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.408623
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 80,
            "touches": 19,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.8996,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 10,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 10,
            "touches": 6,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "outfielderBlock": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Urko Gonz\u00e1lez",
            "slug": "urko-gonzalez",
            "shortName": "U. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 131,
            "id": 1064009,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985046400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": -0.2691
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 47,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 78,
            "touches": 68,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0506,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.555475
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 117,
            "accuratePass": 115,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "minutesPlayed": 90,
            "touches": 122,
            "rating": 7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0197214
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 130,
            "accuratePass": 123,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 7,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 145,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0518198
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 44,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0431407
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 56,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "outfielderBlock": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 56,
            "touches": 67,
            "rating": 7.9,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.294289
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 98,
            "accuratePass": 89,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 85,
            "touches": 109,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.085439
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 35,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "duelLost": 10,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 10,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.4,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.1254,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.371951
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "goals": 2,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 56,
            "touches": 32,
            "rating": 8.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.9428,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.0615487
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 85,
            "touches": 69,
            "rating": 7.9,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.5476,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.160777
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 2,
            "dispossessed": 4,
            "onTargetScoringAttempt": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1317,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0552758
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 34,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0183,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.333312
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 48,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 34,
            "touches": 53,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0385106
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0258519
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "blockedScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 9,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0177,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0189134
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 8,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 3,
            "saves": 6,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.2308
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 5,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 38,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 40,
            "touches": 11,
            "rating": 6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 17,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 4,
            "totalClearance": 5,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.107891
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "lastManTackle": 1,
            "totalTackle": 6,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 31,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.152334
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 62,
            "touches": 26,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0107,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 14,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "errorLeadToAGoal": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.3,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0683,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.117288
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 62,
            "touches": 34,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1432,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00986358
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0717,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0111848
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.5922,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "minutesPlayed": 50,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Justin Smith",
            "firstName": "Justin Smith",
            "slug": "justin-smith",
            "shortName": "J. Smith",
            "position": "M",
            "jerseyNumber": "40",
            "height": 188,
            "userCount": 69,
            "id": 1110904,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 315000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
                }
            }
        },
        "teamId": 37055,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 28,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 28,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0869,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0842201
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Almansa",
            "firstName": "",
            "lastName": "",
            "slug": "almansa-alex",
            "shortName": "A. Almansa",
            "position": "F",
            "jerseyNumber": "39",
            "height": 186,
            "userCount": 48,
            "id": 1391614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068249600,
            "proposedMarketValueRaw": {
                "value": 47000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 20,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.1581
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 50,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.5,
            "possessionLostCtrl": 22,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.324332
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 42,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 3,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 54,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0697,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0190366
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 12,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 5,
            "wonContest": 1,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 84,
            "touches": 62,
            "rating": 6.1,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0855428
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 29,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 58,
            "rating": 7.5,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.2403,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.11767
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 72,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 8,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 98,
            "rating": 7.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0281,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0608762
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1705,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.202303
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 23,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.033,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0378932
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "minutesPlayed": 65,
            "touches": 47,
            "rating": 6.8,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.4509,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0749827
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1426,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0842947
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 3,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0188,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0899797
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 43,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 50,
            "rating": 7.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.439713
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 25,
            "touches": 10,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.4027,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 25,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0686,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0057064
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 16,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 16,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 16,
            "totalLongBalls": 19,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 60,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.072
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 8,
            "totalContest": 2,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 7,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 40,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 6,
            "totalClearance": 9,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 2,
            "totalClearance": 6,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 32,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "wasFouled": 2,
            "minutesPlayed": 87,
            "touches": 50,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 12,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 3,
            "totalTackle": 6,
            "errorLeadToAShot": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 2,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 64,
            "touches": 49,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0115058
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 64,
            "touches": 29,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00624861
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 7,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0217,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 4,
            "wonContest": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.4,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00705444
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "minutesPlayed": 30,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.0638
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 26,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 19,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -1.2843
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 47,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 2,
            "duelWon": 11,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0112876
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 56,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.024008
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 56,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "errorLeadToAGoal": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0515,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0408077
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 49,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 8,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 8.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1546,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.282169
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.5606,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0364262
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 39,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 72,
            "touches": 56,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0195,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0093601
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 47,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 11,
            "accurateCross": 4,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 8.4,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0636,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.297872
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 10,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 8,
            "wonContest": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0222,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.255769
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0391,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.025156
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 6,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "penaltyWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 22,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1396,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0158837
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 10,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.9206,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Lucas Garc\u00eda",
            "firstName": "Lucas Garc\u00eda",
            "slug": "lucas-garcia",
            "shortName": "L. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "42",
            "userCount": 22,
            "id": 1971651,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1087516800
        },
        "teamId": 368693,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Aleksandar Andreev",
            "slug": "andreev",
            "shortName": "A. Andreev",
            "position": "G",
            "jerseyNumber": "43",
            "height": 190,
            "userCount": 79,
            "id": 938629,
            "country": {
                "alpha2": "BG",
                "alpha3": "BGR",
                "name": "Bulgaria",
                "slug": "bulgaria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1143244800
        },
        "teamId": 301517,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ferr\u00e1n Ruiz",
            "firstName": "",
            "lastName": "",
            "slug": "ferran-ruiz",
            "shortName": "F. Ruiz",
            "position": "D",
            "jerseyNumber": "45",
            "height": 172,
            "userCount": 50,
            "id": 1119702,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051315200
        },
        "teamId": 368693,
        "shirtNumber": 45,
        "jerseyNumber": "45",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ra\u00fal Mart\u00ednez",
            "firstName": "Ra\u00fal Mart\u00ednez",
            "slug": "raul-martinez",
            "shortName": "R. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "37",
            "userCount": 29,
            "id": 1937396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014422400
        },
        "teamId": 368693,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Enric Garcia",
            "firstName": "Enric Garc\u00eda",
            "slug": "garcia-enric",
            "shortName": "E. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "userCount": 31,
            "id": 1466131,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600
        },
        "teamId": 368693,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Min-su Kim",
            "slug": "min-su-kim",
            "shortName": "M. Kim",
            "position": "F",
            "jerseyNumber": "29",
            "height": 177,
            "userCount": 380,
            "id": 1892528,
            "country": {
                "alpha2": "KR",
                "alpha3": "KOR",
                "name": "South Korea",
                "slug": "south-korea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1137628800
        },
        "teamId": 368693,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Papa Dame Ba",
            "slug": "papa-dame-ba",
            "shortName": "P. D. Ba",
            "position": "F",
            "jerseyNumber": "44",
            "height": 175,
            "userCount": 112,
            "id": 1897196,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1094947200
        },
        "teamId": 24264,
        "shirtNumber": 44,
        "jerseyNumber": "44",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Dawda Camara",
            "firstName": "Dawda Camara",
            "lastName": "",
            "slug": "dawda-camara",
            "shortName": "D. Camara",
            "position": "F",
            "jerseyNumber": "46",
            "height": 175,
            "userCount": 80,
            "id": 1151851,
            "country": {
                "alpha2": "MR",
                "alpha3": "MRT",
                "name": "Mauritania",
                "slug": "mauritania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036368000,
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0648\u062f\u0627 \u0643\u0645\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0645\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 368693,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 10,
            "totalLongBalls": 19,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -2.0994
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "errorLeadToAGoal": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 46,
            "rating": 6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0729688
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 62,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "ownGoals": 1,
            "fouls": 2,
            "minutesPlayed": 88,
            "touches": 72,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0153161
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 46,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 5.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            },
            "expectedAssists": 0.00770657
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.3,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0536414
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 34,
            "rating": 6.1,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0364,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00814166
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 76,
            "touches": 38,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 35,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1218,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0070643
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 25,
            "goalAssist": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 89,
            "touches": 32,
            "rating": 7.5,
            "possessionLostCtrl": 1,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0596395
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.4,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0954,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0855886
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 11,
            "aerialWon": 2,
            "duelLost": 19,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0523,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0156412
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 14,
            "touches": 12,
            "rating": 7.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0251,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0116794
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 13,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00767652
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 11,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 4,
            "possessionLostCtrl": 1
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 13,
            "totalLongBalls": 15,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.6385
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 11,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0350098
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 13,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 8,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0802,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.0219043
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0915,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0567,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0138028
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 5,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 85,
            "touches": 64,
            "rating": 8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2277,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.999777
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 7,
            "duelLost": 10,
            "duelWon": 11,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0229735
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 33,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 53,
            "rating": 8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1003,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.869408
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 63,
            "touches": 26,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1595,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.230119
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 7,
            "duelLost": 6,
            "duelWon": 10,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 5,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "goals": 1,
            "wasFouled": 3,
            "penaltyWon": 1,
            "minutesPlayed": 85,
            "touches": 38,
            "rating": 8.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 1.4858,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0584187
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 85,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.2522,
            "keyPass": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 1.00859
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 27,
            "touches": 19,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0229,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00523384
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 10,
            "touches": 2,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "minutesPlayed": 10,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 23,
            "totalLongBalls": 20,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.1604
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 37,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 8,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0058,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.2,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0055037
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 2,
            "duelLost": 12,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 81,
            "touches": 55,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0182218
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 58,
            "touches": 38,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 4,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 58,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0122278
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "fouls": 2,
            "minutesPlayed": 58,
            "touches": 18,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.11,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.6,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00974281
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 7,
            "dispossessed": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00684353
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 32,
            "touches": 33,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0948,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0161223
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0189,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00675629
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 27,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00668807
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Maroto",
            "firstName": "",
            "lastName": "",
            "slug": "mario-maroto",
            "shortName": "M. Maroto",
            "position": "M",
            "jerseyNumber": "34",
            "height": 176,
            "userCount": 23,
            "id": 1086415,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041379200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 9,
            "totalLongBalls": 23,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.3014
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 11,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 4,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1013,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0221526
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 23,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0735,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 9,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0718,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 18,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1183,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00523781
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 10,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 9,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 5,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0199,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0160897
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 17,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.095316
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 8,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 4,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0843891
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 80,
            "touches": 32,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3223,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0783759
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "minutesPlayed": 89,
            "touches": 44,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0436,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.104129
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 10,
            "duelWon": 11,
            "dispossessed": 3,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 6,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.108422
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 73,
            "touches": 45,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.013159
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 10,
            "touches": 5,
            "rating": 6.9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0716497
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.4044
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 21,
            "totalLongBalls": 24,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00716443,
            "goalsPrevented": 0.1952
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.6,
            "possessionLostCtrl": 18,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00913554
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0253,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 20,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 4,
            "duelLost": 5,
            "duelWon": 3,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.5,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0952568
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 16,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "errorLeadToAGoal": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 38,
            "rating": 6.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0229,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 45,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0391,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.236825
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 69,
            "touches": 42,
            "rating": 6.6,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0104688
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 5,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 3,
            "minutesPlayed": 79,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0472,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.176337
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 11,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 56,
            "touches": 23,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1357,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00831428
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 69,
            "touches": 20,
            "rating": 6.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1363,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 34,
            "touches": 11,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1037,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0232957
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 21,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00585006
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 21,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0278108
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0115135
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 2,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0195565
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 32,
            "totalLongBalls": 37,
            "accurateLongBalls": 23,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "goalsPrevented": 0.0722
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.12126
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00509276
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0217,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0373138
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 19,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.1,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00716578
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 5,
            "wonContest": 3,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 65,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00612072
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 89,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0146254
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 23,
            "touches": 13,
            "rating": 4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1953,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00932177
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 16,
            "duelLost": 7,
            "duelWon": 19,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 4,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.4703,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00501892
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 25,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 29,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 25,
            "touches": 10,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.111483
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 1,
            "touches": 3
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 1,
            "touches": 5,
            "possessionLostCtrl": 3
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 7.2,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.2762
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 44,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 82,
            "touches": 74,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0166078
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 53,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 7,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0247,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0535183
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0688,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 82,
            "accuratePass": 70,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 107,
            "rating": 7.5,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0538,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.188208
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 38,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 70,
            "touches": 52,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.190487
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 48,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 7,
            "duelLost": 13,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0729097
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 6,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0353,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0239201
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 57,
            "touches": 38,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0736,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0191792
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "duelLost": 6,
            "duelWon": 3,
            "totalContest": 8,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.2,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0579,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.25165
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 14,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.052,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 51,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 60,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0407,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0901794
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 3,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 33,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0682,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00793062
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "minutesPlayed": 33,
            "touches": 31,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.085,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.069913
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 20,
            "touches": 28,
            "rating": 7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0269,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0311418
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 8,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.255
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 51,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 79,
            "touches": 80,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0329,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.134411
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 70,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 3,
            "challengeLost": 3,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 90,
            "rating": 6.3,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0121315
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 58,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 6,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.6936,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00673498
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 57,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 19,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 100,
            "rating": 7.1,
            "possessionLostCtrl": 26,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.261529
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 60,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1962,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0418792
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 70,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.490285
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 56,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1033,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.192091
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 42,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 3,
            "minutesPlayed": 70,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1114,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0365327
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 1,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 58,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.4278,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.228963
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00785959
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 4,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 48,
            "rating": 7.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0761,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.357848
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "minutesPlayed": 20,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 20,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0059,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0208005
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalOffside": 1,
            "minutesPlayed": 20,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0164092
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 13,
            "totalLongBalls": 31,
            "accurateLongBalls": 13,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 6,
            "saves": 9,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 9.3,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 9.3,
                "alternative": null
            },
            "expectedAssists": 0.00547964,
            "goalsPrevented": 1.2974
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0229461
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 9,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0281,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "minutesPlayed": 83,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0211,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00516524
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 15,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 7,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1304,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0322,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.119623
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "minutesPlayed": 63,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00547791
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 7,
            "duelLost": 6,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 34,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.6255,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0138762
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 2,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 10,
            "wonContest": 6,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "minutesPlayed": 83,
            "touches": 36,
            "rating": 8.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0729,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.429009
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "minutesPlayed": 27,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0693,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 2
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Kike Barja",
            "slug": "kike-barja",
            "shortName": "K. Barja",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 121,
            "id": 591132,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860112000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0631\u062c\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 12,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 7.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.018306,
            "goalsPrevented": 0.2968
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 8,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 71,
            "rating": 8.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0237,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.0395449
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 31,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 10,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0595,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 39,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "totalClearance": 7,
            "interceptionWon": 4,
            "lastManTackle": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 37,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.013071
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1226,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.306584
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 33,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 8,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.2082,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.183182
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0265,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0392711
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceMissed": 2,
            "shotOffTarget": 7,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 53,
            "rating": 7.1,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.7866,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0410409
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.4869,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0599992
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 32,
            "rating": 7.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1975,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0394547
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0483,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00548678
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 2
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 1,
            "touches": 5,
            "possessionLostCtrl": 3
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nobel Mendy",
            "slug": "mendy-nobel",
            "shortName": "N. Mendy",
            "position": "D",
            "jerseyNumber": "32",
            "height": 187,
            "userCount": 176,
            "id": 1458073,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 28,
            "totalLongBalls": 25,
            "accurateLongBalls": 13,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": -0.9158
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 33,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 9,
            "challengeLost": 6,
            "totalContest": 2,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 6.2,
            "possessionLostCtrl": 25,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.131953
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 51,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 45,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "ownGoals": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0652,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0100863
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0722,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 45,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 3,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 84,
            "touches": 68,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0242117
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 61,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0461,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.022655
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 17,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "minutesPlayed": 71,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0318025
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 48,
            "rating": 7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0744,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.036367
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0571,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.074255
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 3,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 45,
            "touches": 38,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0237,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0136948
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 4,
            "duelWon": 8,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0678,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.1312
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "hitWoodwork": 2,
            "minutesPlayed": 20,
            "touches": 13,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1322,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0358514
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 19,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.118018
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Thomas Lemar",
            "firstName": "",
            "lastName": "",
            "slug": "thomas-lemar",
            "shortName": "T. Lemar",
            "position": "M",
            "jerseyNumber": "11",
            "height": 170,
            "userCount": 3268,
            "id": 191182,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 816134400,
            "proposedMarketValueRaw": {
                "value": 7700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0122513
        },
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Ilias Kostis",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-kostis",
            "shortName": "I. Kostis",
            "position": "D",
            "jerseyNumber": "5",
            "height": 191,
            "userCount": 585,
            "id": 1145621,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046304000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Geronimo Spina",
            "firstName": "Ger\u00f3nimo Spina",
            "slug": "geronimo-spina",
            "shortName": "G. Spina",
            "position": "D",
            "jerseyNumber": "12",
            "height": 187,
            "userCount": 186,
            "id": 1544426,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107907200,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Aitor Gismera",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-gismera",
            "shortName": "A. Gismera",
            "position": "M",
            "jerseyNumber": "10",
            "height": 182,
            "userCount": 113,
            "id": 1142586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1077321600,
            "proposedMarketValueRaw": {
                "value": 265000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "goodHighClaim": 2,
            "totalKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.0142
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 9,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0866421
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 57,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0241076
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 36,
            "totalLongBalls": 16,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.4,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0192,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.271288
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 22,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.17652
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 5,
            "minutesPlayed": 45,
            "touches": 19,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1253,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0195559
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 17,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 5,
            "duelLost": 8,
            "duelWon": 6,
            "dispossessed": 2,
            "bigChanceMissed": 2,
            "shotOffTarget": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 1.2327,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0098927
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 66,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 3,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 95,
            "rating": 7.4,
            "possessionLostCtrl": 21,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.346136
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 40,
            "rating": 6.5,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1981,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0225554
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.115189
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 5,
            "duelWon": 10,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 4,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.5571,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 46,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1012,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0341891
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0289,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0500643
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.045863
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 15,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 14,
            "totalLongBalls": 32,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.4,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.8717
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 5,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "totalClearance": 4,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 52,
            "touches": 36,
            "rating": 6.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0558617
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 8,
            "totalLongBalls": 13,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 2,
            "totalClearance": 6,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.3,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 8,
            "aerialWon": 3,
            "duelLost": 8,
            "duelWon": 7,
            "totalClearance": 11,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 3,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 23,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jos\u00e9 Luis Gay\u00e0",
            "slug": "jose-luis-gaya",
            "shortName": "J. L. Gay\u00e0",
            "position": "D",
            "jerseyNumber": "14",
            "height": 172,
            "userCount": 1789,
            "id": 227922,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801360000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 2,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 22,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0317948
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 11,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 28,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.484,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00525357
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1126,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 3,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 30,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 4,
            "duelLost": 13,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.7,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00551382
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "totalTackle": 3,
            "minutesPlayed": 38,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0336049
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 15,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 15,
            "touches": 4,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jaume Dom\u00e9nech",
            "slug": "jaume-domenech",
            "shortName": "J. Dom\u00e9nech",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 212,
            "id": 235386,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 657763200,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 20,
            "totalLongBalls": 33,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 5,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.8,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.00583162,
            "goalsPrevented": 1.4325
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 43,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 6,
            "outfielderBlock": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00517323
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.026244
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00732554
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 54,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0255,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00894226
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 11,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 2,
            "totalTackle": 5,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0155444
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 8,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "goalAssist": 1,
            "totalCross": 5,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 69,
            "touches": 44,
            "rating": 7.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0114,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.210715
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 6,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 65,
            "touches": 23,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2943,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00674052
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "minutesPlayed": 54,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.4541,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 36,
            "touches": 23,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.5117,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0193092
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 36,
            "touches": 19,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2048,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0757472
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 25,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0414985
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 2,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 21,
            "touches": 15,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1145,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.33928
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.7628
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 40,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 5,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 80,
            "touches": 57,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 47,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 56,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.04,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0123033
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 82,
            "accuratePass": 66,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 115,
            "rating": 6.7,
            "possessionLostCtrl": 28,
            "expectedGoals": 0.0217,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0863169
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 82,
            "accuratePass": 73,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 88,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0325,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0928077
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 63,
            "touches": 57,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0176,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0474866
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 41,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.7,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.258,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.192377
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2752,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0746422
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 63,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0171744
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 6,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 62,
            "touches": 41,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0721,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0437165
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 23,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0117326
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 28,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1284,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "minutesPlayed": 10,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "minutesPlayed": 10,
            "touches": 13,
            "rating": 7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0695,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0329731
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 19,
            "totalLongBalls": 21,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -1.2447
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.076326
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 5,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.047,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00939105
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 35,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0113181
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 86,
            "touches": 50,
            "rating": 6.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.4985,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 22,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.5,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.024,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00575769
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 24,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00897371
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Eduardo Camavinga",
            "firstName": "",
            "lastName": "",
            "slug": "camavinga-eduardo",
            "shortName": "E. Camavinga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 182,
            "userCount": 155041,
            "id": 973887,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036886400,
            "proposedMarketValueRaw": {
                "value": 95000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 42,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.017063
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceMissed": 2,
            "onTargetScoringAttempt": 3,
            "totalOffside": 8,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.5784,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00695923
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 9,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 7,
            "fouls": 3,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.3218,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.192695
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "minutesPlayed": 27,
            "touches": 23,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0118,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.197364
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 4,
            "touches": 4
        },
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 0.4947
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 41,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 4,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0200276
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 43,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0059499
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 6,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0309,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.148024
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.5,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0966574
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 47,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 65,
            "touches": 70,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.179657
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 54,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 73,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0252,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0740698
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.4259,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.154781
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 19,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0187,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 20,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 8.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.6691,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.319972
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "hitWoodwork": 1,
            "goals": 2,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 8.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 1.3915,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.00554159
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 36,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0162922
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "minutesPlayed": 25,
            "touches": 19,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0236,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.12646
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 3,
            "touches": 4,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Diego Kochen",
            "firstName": "Diego Kochen",
            "lastName": "",
            "slug": "kochen-diego",
            "shortName": "D. Kochen",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 2394,
            "id": 1402907,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1142726400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 14,
            "totalLongBalls": 21,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.4803
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 4,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 50,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0155708
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 32,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.4,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00534598
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2133,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.175983
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 35,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalClearance": 1,
            "interceptionWon": 5,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0988296
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 48,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.114439
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 60,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0213,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0358534
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 36,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 84,
            "touches": 53,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0612,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.038391
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 10,
            "duelWon": 2,
            "dispossessed": 3,
            "totalContest": 6,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.4469,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0321446
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 9,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 33,
            "rating": 7.3,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1552,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00935444
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 30,
            "touches": 19,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.1713
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0122295
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.2441
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 43,
            "touches": 31,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 89,
            "accuratePass": 83,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 7,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00914983
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 99,
            "accuratePass": 84,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 110,
            "rating": 6.8,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0758276
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.2567,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0618123
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 44,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 3,
            "minutesPlayed": 89,
            "touches": 75,
            "rating": 6.1,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1695,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.078716
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 5,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00669045
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 6,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0341,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0198785
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 4,
            "wasFouled": 3,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.025947
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 7,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1107,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Papa Dame Ba",
            "slug": "papa-dame-ba",
            "shortName": "P. D. Ba",
            "position": "F",
            "jerseyNumber": "44",
            "height": 175,
            "userCount": 112,
            "id": 1897196,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1094947200
        },
        "teamId": 24264,
        "shirtNumber": 44,
        "jerseyNumber": "44",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 47,
            "touches": 26,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0295,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 29,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 24,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0164211
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Min-su Kim",
            "slug": "min-su-kim",
            "shortName": "M. Kim",
            "position": "F",
            "jerseyNumber": "29",
            "height": 177,
            "userCount": 380,
            "id": 1892528,
            "country": {
                "alpha2": "KR",
                "alpha3": "KOR",
                "name": "South Korea",
                "slug": "south-korea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1137628800
        },
        "teamId": 368693,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 2
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Lucas Garc\u00eda",
            "firstName": "Lucas Garc\u00eda",
            "slug": "lucas-garcia",
            "shortName": "L. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "42",
            "userCount": 22,
            "id": 1971651,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1087516800
        },
        "teamId": 368693,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ra\u00fal Mart\u00ednez",
            "firstName": "Ra\u00fal Mart\u00ednez",
            "slug": "raul-martinez",
            "shortName": "R. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "37",
            "userCount": 29,
            "id": 1937396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014422400
        },
        "teamId": 368693,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 13,
            "totalLongBalls": 28,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 7,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 8.2,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "goalsPrevented": 0.5896
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 9,
            "wonContest": 6,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.9,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0599,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0239699
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 39,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0919,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0129233
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 12,
            "rating": 3.9,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0876,
            "ratingVersions": {
                "original": 3.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 9,
            "wonContest": 6,
            "bigChanceCreated": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 84,
            "touches": 47,
            "rating": 7.3,
            "possessionLostCtrl": 15,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.377642
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 34,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 9,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.034,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0134065
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 43,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 59,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.062,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0220933
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.230257
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 65,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.256,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.140716
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 60,
            "touches": 38,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4134,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0465959
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 30,
            "touches": 15,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0742,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0702251
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "wasFouled": 1,
            "minutesPlayed": 30,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.4381,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0335267
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelWon": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "minutesPlayed": 25,
            "touches": 10,
            "rating": 6.8,
            "expectedGoals": 0.3667,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 13,
            "touches": 3,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0205153
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 16,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 15,
            "totalLongBalls": 16,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "ownGoals": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0322484,
            "goalsPrevented": -0.0952
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "totalContest": 1,
            "totalClearance": 3,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0291976
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 51,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "interceptionWon": 3,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0616496
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "totalClearance": 2,
            "totalTackle": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0960229
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.3084,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.136606
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 41,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 1,
            "challengeLost": 4,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0273,
            "keyPass": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0748609
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 5,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 60,
            "touches": 41,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0171,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00521081
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 12,
            "duelWon": 3,
            "challengeLost": 6,
            "dispossessed": 5,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 73,
            "touches": 32,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.167,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0587661
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 6,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 3,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0839,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.169615
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 43,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 58,
            "touches": 65,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.2554,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.028054
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0132477
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 17,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0801,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0439679
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Egoitz Mu\u00f1oz",
            "slug": "egoitz-munoz",
            "shortName": "E. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "27",
            "userCount": 14,
            "id": 1518514,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081900800,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 254356,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 37,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 3,
            "savedShotsFromInsideTheBox": 5,
            "saves": 7,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 8.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.00591461,
            "goalsPrevented": 2.8007
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0574841
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 60,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00548011
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 65,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0103297
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 8,
            "challengeLost": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 6,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 45,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0078,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 40,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0193,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00596565
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 88,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.021,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 79,
            "touches": 34,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0219,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0356422
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.116014
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "penaltyWon": 1,
            "minutesPlayed": 71,
            "touches": 17,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.8433,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 19,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00567711
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 19,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0628421
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 2,
            "touches": 6,
            "possessionLostCtrl": 2
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "shotOffTarget": 1,
            "minutesPlayed": 2,
            "touches": 1,
            "expectedGoals": 0.0291
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": -0.1307
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 65,
            "totalLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.46057
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 62,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00505529
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 62,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0123,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0201787
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2463,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.101317
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 3,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 82,
            "touches": 50,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0919,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.141242
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1139,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0193693
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 72,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0385414
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 4,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 68,
            "rating": 8.5,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1415,
            "keyPass": 7,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.248957
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 33,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 55,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2026,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0395776
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 21,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.4847,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "minutesPlayed": 20,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.2819,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 20,
            "touches": 10,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.5574,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0480383
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 8,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.2326,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00936721
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "totalContest": 2,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 3
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Rub\u00e9n G\u00f3mez",
            "firstName": "Rub\u00e9n G\u00f3mez Peris",
            "lastName": "",
            "slug": "ruben-gomez",
            "shortName": "R. G\u00f3mez",
            "position": "G",
            "jerseyNumber": "55",
            "height": 185,
            "userCount": 23,
            "id": 1407702,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1011830400,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 55,
        "jerseyNumber": "55",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 19,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": 0.1268
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 5,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 68,
            "touches": 40,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00604421
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 38,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 9,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1102,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0133326
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 38,
            "totalLongBalls": 14,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 6,
            "duelLost": 3,
            "duelWon": 11,
            "shotOffTarget": 2,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.2,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1136,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00908916
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 58,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.039,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0637619
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 20,
            "accurateCross": 5,
            "aerialLost": 1,
            "duelLost": 6,
            "challengeLost": 1,
            "totalContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.2,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.0647,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.403369
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 4,
            "duelLost": 10,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.2,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0856975
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.018,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0178955
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 3,
            "totalClearance": 1,
            "wasFouled": 3,
            "minutesPlayed": 68,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0091996
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0473,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 58,
            "touches": 16,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.2567,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 28,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.185981
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "minutesPlayed": 32,
            "touches": 5,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.2451,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 22,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0639,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.011338
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2245,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0388,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0056487
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 24,
            "totalLongBalls": 14,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 64,
            "touches": 41,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.0672
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 35,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00841738
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 43,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 8,
            "outfielderBlock": 2,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 31,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 8,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 7,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0279228
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 56,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.100081
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 59,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 5,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.8,
            "possessionLostCtrl": 4,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.368071
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "totalClearance": 4,
            "errorLeadToAShot": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 51,
            "rating": 8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.095,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.136925
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "minutesPlayed": 81,
            "touches": 38,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.255,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0214521
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 4,
            "totalContest": 4,
            "wonContest": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0129553
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 9,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 41,
            "rating": 6.5,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.125,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.062065
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 27,
            "touches": 32,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.106117
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 4,
            "totalLongBalls": 18,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 2,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 26,
            "touches": 24,
            "rating": 6.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 9,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.323,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 1
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 2
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 13,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -1.262
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 75,
            "touches": 49,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1562,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0490936
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 46,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1127,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0103705
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 54,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00685574
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 11,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 40,
            "rating": 6.2,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0724,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 55,
            "touches": 30,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1531,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0670436
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "fouls": 2,
            "penaltyWon": 1,
            "minutesPlayed": 55,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00959621
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 41,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 69,
            "touches": 63,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.8353,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0760725
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 12,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.6,
            "possessionLostCtrl": 24,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0137137
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 75,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0823,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0805,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0660459
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 35,
            "touches": 26,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0391,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0143656
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 35,
            "touches": 39,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.026,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.127934
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jos\u00e9 Luis Gay\u00e0",
            "slug": "jose-luis-gaya",
            "shortName": "J. L. Gay\u00e0",
            "position": "D",
            "jerseyNumber": "14",
            "height": 172,
            "userCount": 1789,
            "id": 227922,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801360000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 24,
            "touches": 31,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.177876
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 19,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0969,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 16,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0190842
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jaume Dom\u00e9nech",
            "slug": "jaume-domenech",
            "shortName": "J. Dom\u00e9nech",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 212,
            "id": 235386,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 657763200,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 17,
            "totalLongBalls": 28,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 5,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.3,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.2262
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 9,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 45,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 49,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1528,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0138096
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0241,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00542082
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 6,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "penaltyConceded": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 53,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.101694
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Adnan Januzaj",
            "slug": "adnan-januzaj",
            "shortName": "A. Januzaj",
            "position": "M",
            "jerseyNumber": "24",
            "height": 186,
            "userCount": 1624,
            "id": 328145,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791942400,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 5,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 47,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1084,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.318175
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 53,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0963,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.154411
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4307,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0163825
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 40,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.272,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.12153
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 27,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0577,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "minutesPlayed": 24,
            "touches": 23,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.119352
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 2,
            "minutesPlayed": 16,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 31,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 2,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.232
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 3,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0273621
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 94,
            "accuratePass": 91,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 103,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.016951
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 116,
            "accuratePass": 107,
            "totalLongBalls": 11,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 126,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0265478
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 34,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.092,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0276827
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 48,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.058,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0236321
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 68,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 3,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 83,
            "touches": 86,
            "rating": 8.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1066,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.8,
                "alternative": null
            },
            "expectedAssists": 0.644054
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "goalAssist": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 7,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 76,
            "touches": 54,
            "rating": 7.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.7625,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.349741
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 8,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "penaltyWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 46,
            "rating": 8.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1081,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.137287
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 29,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 76,
            "touches": 45,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4317,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.189014
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "goals": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 66,
            "touches": 33,
            "rating": 8.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 1.9486,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.0249185
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 24,
            "touches": 18,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0995874
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.3807,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0551709
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelWon": 3,
            "totalTackle": 3,
            "minutesPlayed": 14,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 11,
            "rating": 8.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1802,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.141846
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gavi",
            "firstName": "",
            "lastName": "",
            "slug": "gavi",
            "shortName": "Gavi",
            "position": "M",
            "jerseyNumber": "6",
            "height": 173,
            "userCount": 143469,
            "id": 1103693,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091664000,
            "proposedMarketValueRaw": {
                "value": 93000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 10,
            "rating": 6.6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0548125
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Diego Kochen",
            "firstName": "Diego Kochen",
            "lastName": "",
            "slug": "kochen-diego",
            "shortName": "D. Kochen",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 2394,
            "id": 1402907,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1142726400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Wojciech Szcz\u0119sny",
            "slug": "wojciech-szczesny",
            "shortName": "W. Szcz\u0119sny",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 30458,
            "id": 50490,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 640396800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 14,
            "totalLongBalls": 19,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 3,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "punches": 3,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.2,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -0.4576
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.009008
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 41,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0173141
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.1,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 3,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 6,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 36,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00635947
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "minutesPlayed": 70,
            "touches": 30,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.047,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00676266
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 6,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 5.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1917,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.0414881
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 19,
            "rating": 6,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 3,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 23,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0913,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0190262
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0171558
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 25,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0312,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.125739
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 20,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 20,
            "touches": 6,
            "rating": 7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.5611,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 9,
            "rating": 6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 19,
            "totalLongBalls": 18,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.7376
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 41,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0204939
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "penaltyConceded": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "totalClearance": 5,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 6,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.255,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.116036
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 11,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 6,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.2318,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.156209
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 43,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 8,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0495164
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 69,
            "touches": 39,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0604,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0218949
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 45,
            "rating": 7.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2329,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.140074
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 79,
            "touches": 48,
            "rating": 6.5,
            "possessionLostCtrl": 22,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.337743
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 1,
            "goalAssist": 1,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "wasFouled": 3,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 18,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1154,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0411202
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 21,
            "touches": 20,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0132,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0271754
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 11,
            "touches": 10,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 2,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Antonio Espigares",
            "firstName": "",
            "lastName": "",
            "slug": "espigares-antonio",
            "shortName": "A. Espigares",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 24,
            "id": 1142261,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1094342400,
            "proposedMarketValueRaw": {
                "value": 465000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 16,
            "totalLongBalls": 28,
            "accurateLongBalls": 13,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00766066,
            "goalsPrevented": 0.5531
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "totalClearance": 4,
            "interceptionWon": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.181362
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 7,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00780826
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 11,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00747048
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 3,
            "totalClearance": 1,
            "interceptionWon": 4,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0667309
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0266,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.161455
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 3,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.9604,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0130139
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 35,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.052,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.214912
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 35,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2334,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00625563
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 9,
            "duelLost": 10,
            "duelWon": 13,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 4,
            "penaltyWon": 1,
            "minutesPlayed": 89,
            "touches": 31,
            "rating": 7.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.356,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.124356
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.14295
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.2536,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 3,
            "minutesPlayed": 22,
            "touches": 15,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0624,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 1
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Allan Nyom",
            "slug": "allan-nyom",
            "shortName": "A. Nyom",
            "position": "D",
            "jerseyNumber": "12",
            "height": 190,
            "userCount": 293,
            "id": 128637,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 579225600,
            "proposedMarketValueRaw": {
                "value": 550000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 1
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djordjije Medenica",
            "firstName": "Djordjije Medenica",
            "slug": "djordjije-medenica",
            "shortName": "D. Medenica",
            "position": "G",
            "height": 185,
            "userCount": 24,
            "id": 1645004,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1163721600
        },
        "teamId": 375393,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 24,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.6541
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 40,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 60,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0445251
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 51,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.596695
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 56,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0180275
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 43,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0258,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0153594
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 61,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 85,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0621,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.152713
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 53,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 57,
            "touches": 70,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0600673
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 45,
            "rating": 6.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0637,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0431229
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 55,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 90,
            "rating": 9,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.3082,
            "keyPass": 4,
            "ratingVersions": {
                "original": 9,
                "alternative": null
            },
            "expectedAssists": 0.283068
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 2,
            "onTargetScoringAttempt": 4,
            "blockedScoringAttempt": 3,
            "goals": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 2.1061,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0262419
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "fouls": 2,
            "minutesPlayed": 57,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.8439,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0601712
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.7427,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0914352
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 1,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 33,
            "touches": 30,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1138,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.107586
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 30,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.335064
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 4,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 37,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2483,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0805014
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 26,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0111722
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Thomas Lemar",
            "firstName": "",
            "lastName": "",
            "slug": "thomas-lemar",
            "shortName": "T. Lemar",
            "position": "M",
            "jerseyNumber": "11",
            "height": 170,
            "userCount": 3268,
            "id": 191182,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 816134400,
            "proposedMarketValueRaw": {
                "value": 7700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 19,
            "totalLongBalls": 22,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalClearance": 2,
            "errorLeadToAGoal": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 4,
            "saves": 5,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.5965
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalClearance": 11,
            "interceptionWon": 3,
            "totalTackle": 5,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00532068
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 30,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "interceptionWon": 4,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 36,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 3,
            "totalClearance": 15,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0284894
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "minutesPlayed": 83,
            "touches": 38,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00721957
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 68,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0484,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00736845
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0811,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0505051
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 24,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 2,
            "outfielderBlock": 5,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 7,
            "challengeLost": 3,
            "totalContest": 5,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 83,
            "touches": 47,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0872,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 35,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0272,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.012329
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 24,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalOffside": 1,
            "minutesPlayed": 22,
            "touches": 14,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 22,
            "touches": 20,
            "rating": 5.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.00666487
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "interceptionWon": 3,
            "minutesPlayed": 18,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 21,
            "totalLongBalls": 20,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.018906,
            "goalsPrevented": 0.1702
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 20,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0673,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0356344
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 10,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0789,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0095236
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0432,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.026,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.379584
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 72,
            "touches": 34,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.4793,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0246483
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 36,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 54,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0327,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0135074
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 38,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 8,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.068,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.109489
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 27,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 56,
            "rating": 7.5,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.228,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.316165
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 8,
            "duelLost": 6,
            "duelWon": 11,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 38,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.8609,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0563919
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 72,
            "touches": 25,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1487,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.123872
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 18,
            "touches": 3,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalOffside": 1,
            "minutesPlayed": 18,
            "touches": 11,
            "rating": 7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.157474
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 13,
            "touches": 2,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Javi Llabr\u00e9s",
            "firstName": "Javi Llabr\u00e9s",
            "lastName": "",
            "slug": "javi-llabres",
            "shortName": "J. Llabr\u00e9s",
            "position": "F",
            "jerseyNumber": "19",
            "height": 174,
            "userCount": 91,
            "id": 1162309,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031702400,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 18,
            "totalLongBalls": 25,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.5,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.5641
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 5,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0492333
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 41,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00591215
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 32,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 73,
            "touches": 50,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0969,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00640113
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2033,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0395497
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 25,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 63,
            "touches": 45,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.129929
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 6,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 55,
            "touches": 36,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.045,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00537017
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0194,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0844905
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "minutesPlayed": 55,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.2035,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 64,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0104,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 35,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0153,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0111016
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 35,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0101659
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0400952
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 26,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00578978
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "minutesPlayed": 17,
            "touches": 5,
            "rating": 6.3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -1.2826
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 31,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 72,
            "touches": 39,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00611521
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 53,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 8,
            "dispossessed": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 5,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0871,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0345849
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 55,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 3,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.4,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0891,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.234542
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 68,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 2,
            "outfielderBlock": 1,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 87,
            "touches": 79,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0290091
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 65,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0315,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.250589
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 4,
            "wonContest": 3,
            "totalClearance": 4,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0339238
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 35,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 57,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.195,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0434306
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 9,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 34,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0177,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.141499
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 72,
            "touches": 28,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.9103,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0136943
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 18,
            "touches": 26,
            "rating": 6.8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00541413
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 13,
            "rating": 7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1189,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.120391
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 7,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.368,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 4,
            "rating": 6.7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0223026
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 12,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0165574
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Mihailo Risti\u0107",
            "slug": "mihailo-ristic",
            "shortName": "M. Risti\u0107",
            "position": "D",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 544,
            "id": 363774,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815097600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 24,
            "totalLongBalls": 11,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.7408
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 67,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 8,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0108044
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 74,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 7,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0453165
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 83,
            "accuratePass": 70,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 90,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.015652
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 54,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0639053
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0581,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0201669
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Eduardo Camavinga",
            "firstName": "",
            "lastName": "",
            "slug": "camavinga-eduardo",
            "shortName": "E. Camavinga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 182,
            "userCount": 155041,
            "id": 973887,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036886400,
            "proposedMarketValueRaw": {
                "value": 95000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 63,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0647,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.019386
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 35,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 70,
            "touches": 51,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0103531
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 3,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0227,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0396781
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 10,
            "dispossessed": 1,
            "totalContest": 8,
            "wonContest": 5,
            "bigChanceMissed": 1,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.5,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.4588,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0279859
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 82,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1337,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0571927
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 28,
            "rating": 7.5,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.189524
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "minutesPlayed": 27,
            "touches": 23,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 14,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 20,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelWon": 4,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 8,
            "touches": 14,
            "rating": 6.9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.7086
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 72,
            "touches": 58,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.232816
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 55,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0412,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00775481
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 57,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "lastManTackle": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0246,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.010525
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 46,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0245717
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 4,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0302,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.049651
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 59,
            "touches": 15,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0242747
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.084,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0145966
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0276,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.180196
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1857,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0578017
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "wasFouled": 1,
            "minutesPlayed": 31,
            "touches": 19,
            "rating": 7.1,
            "possessionLostCtrl": 2,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.218466
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 31,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Min-su Kim",
            "slug": "min-su-kim",
            "shortName": "M. Kim",
            "position": "F",
            "jerseyNumber": "29",
            "height": 177,
            "userCount": 380,
            "id": 1892528,
            "country": {
                "alpha2": "KR",
                "alpha3": "KOR",
                "name": "South Korea",
                "slug": "south-korea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1137628800
        },
        "teamId": 368693,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 18,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Lucas Garc\u00eda",
            "firstName": "Lucas Garc\u00eda",
            "slug": "lucas-garcia",
            "shortName": "L. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "42",
            "userCount": 22,
            "id": 1971651,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1087516800
        },
        "teamId": 368693,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ra\u00fal Mart\u00ednez",
            "firstName": "Ra\u00fal Mart\u00ednez",
            "slug": "raul-martinez",
            "shortName": "R. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "37",
            "userCount": 29,
            "id": 1937396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014422400
        },
        "teamId": 368693,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Enric Garcia",
            "firstName": "Enric Garc\u00eda",
            "slug": "garcia-enric",
            "shortName": "E. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "userCount": 31,
            "id": 1466131,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600
        },
        "teamId": 368693,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Silvi Cl\u00faa",
            "slug": "silvi-clua",
            "shortName": "S. Cl\u00faa",
            "position": "M",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 127,
            "id": 1513673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1106956800
        },
        "teamId": 368693,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 10,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.2537
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 39,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0134634
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 73,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0103776
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 63,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2452,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.017,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.175088
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0192946
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "goals": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 80,
            "touches": 52,
            "rating": 7.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4011,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0383195
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1332,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0160605
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 50,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 80,
            "touches": 67,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0664,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.225064
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 3,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 59,
            "touches": 36,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0317,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.671386
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 65,
            "touches": 17,
            "rating": 6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.8311,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.028397
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 31,
            "touches": 25,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0097,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 17,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "totalKeeperSweeper": 4,
            "accurateKeeperSweeper": 4,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00985412,
            "goalsPrevented": 0.7577
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 6.7,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0242,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.260895
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 41,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 1,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0416886
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 41,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "lastManTackle": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1163,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0129034
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 17,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.113546
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00979357
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 50,
            "rating": 7.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4927,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.169264
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 4,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3338,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.257035
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 67,
            "touches": 49,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1898,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.177966
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 5,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 24,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.6238,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0317525
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "totalContest": 6,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 34,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0786,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.768899
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0685,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0438969
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 13,
            "touches": 8,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.065,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0152565
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 15,
            "touches": 7,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0645,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00960772
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "minutesPlayed": 14,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 15,
            "totalLongBalls": 22,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.5,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.8123
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1972,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.591079
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 34,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 8,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 88,
            "touches": 63,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0287,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00981236
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0745,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 17,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7,
            "possessionLostCtrl": 20,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.132732
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 68,
            "touches": 35,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.027,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.260037
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 3,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0180637
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2524,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.263078
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 60,
            "touches": 24,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0080431
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 1.005,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00573068
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 7.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 1.0549,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0102304
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 30,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 5,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0366721
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 7,
            "touches": 3,
            "rating": 5.7,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.7338
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.112017
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 72,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3188,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0181479
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 52,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00514766
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 48,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.151085
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 55,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 9,
            "dispossessed": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 6,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0240487
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 41,
            "rating": 8.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.4204,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.0148779
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 2,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 53,
            "rating": 9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.4517,
            "keyPass": 2,
            "ratingVersions": {
                "original": 9,
                "alternative": null
            },
            "expectedAssists": 0.0950763
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 6,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 4,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 73,
            "touches": 45,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0799,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.098131
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 10,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0225,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "minutesPlayed": 17,
            "touches": 3,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 17,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.017,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0346676
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.6135
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 3,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00748718
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 73,
            "touches": 48,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0737787
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.1,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00948537
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 23,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0227562
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 63,
            "touches": 33,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0501,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.013829
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00526675
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 45,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0446515
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1017,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0345744
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 27,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.107157
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 17,
            "touches": 18,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1185,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00714518
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Lloren\u00e7 Serred",
            "firstName": "Lloren\u00e7 Serred",
            "slug": "llorenc-serred",
            "shortName": "L. Serred",
            "position": "G",
            "jerseyNumber": "34",
            "userCount": 5,
            "id": 1823560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125792000,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 15,
            "totalLongBalls": 21,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.2,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0051266,
            "goalsPrevented": -0.3814
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 4,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.22915
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 49,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.213,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0359974
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 53,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0107095
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.115195
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 37,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 61,
            "touches": 55,
            "rating": 6.3,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0176156
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 40,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 78,
            "touches": 61,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.018017
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.032766
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0747,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0163718
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 61,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0412,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.241495
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 28,
            "rating": 7.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1252,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "dispossessed": 2,
            "minutesPlayed": 29,
            "touches": 9,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 16,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 29,
            "touches": 31,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0106753
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "totalContest": 2,
            "minutesPlayed": 16,
            "touches": 11,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0296148
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00938972
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 8,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0353,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Alejandro Jay",
            "slug": "alejandro-jay",
            "shortName": "A. Jay",
            "position": "D",
            "jerseyNumber": "35",
            "height": 181,
            "userCount": 16,
            "id": 1001995,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026000000,
            "proposedMarketValueRaw": {
                "value": 155000,
                "currency": "EUR"
            }
        },
        "teamId": 254356,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 16,
            "totalLongBalls": 23,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -0.4571
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "minutesPlayed": 74,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1087,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.3,
            "possessionLostCtrl": 17,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.095439
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 4,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.257468
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 13,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1114,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00839824
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 3,
            "errorLeadToAGoal": 1,
            "fouls": 4,
            "minutesPlayed": 74,
            "touches": 39,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0444,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 7,
            "duelLost": 7,
            "duelWon": 11,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 2,
            "penaltyWon": 1,
            "minutesPlayed": 89,
            "touches": 32,
            "rating": 8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.5414,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 4,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 74,
            "touches": 32,
            "rating": 7.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.8277,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.21459
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "goalAssist": 1,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 20,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.7884,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0616025
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 5,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 16,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0315,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.135871
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Maroto",
            "firstName": "",
            "lastName": "",
            "slug": "mario-maroto",
            "shortName": "M. Maroto",
            "position": "M",
            "jerseyNumber": "34",
            "height": 176,
            "userCount": 23,
            "id": 1086415,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041379200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "minutesPlayed": 90,
            "touches": 19,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.613
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 54,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 7.6,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.02,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.262458
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 95,
            "accuratePass": 87,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0112,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0703069
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 105,
            "accuratePass": 95,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 118,
            "rating": 7.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0769,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0358927
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0135,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.012762
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 72,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1171,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.220282
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 11,
            "totalContest": 7,
            "wonContest": 6,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 8.3,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1643,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.187338
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0298,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.33582
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 86,
            "accuratePass": 80,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 12,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 112,
            "rating": 7.6,
            "possessionLostCtrl": 17,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.191589
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 2,
            "dispossessed": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 61,
            "touches": 37,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0274822
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "goalAssist": 1,
            "aerialLost": 4,
            "duelLost": 6,
            "dispossessed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1893,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0395847
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2584,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0680042
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 25,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1259,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.021728
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 19,
            "totalLongBalls": 24,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.5,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.0212
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.3717,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00677216
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 20,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 6,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 10,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 7,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 19,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0141959
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 9,
            "duelWon": 6,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalContest": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.2,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 4,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00509976
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0373,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 83,
            "touches": 53,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.278589
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 74,
            "touches": 23,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1345,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0150588
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 26,
            "touches": 17,
            "rating": 5.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 3,
            "minutesPlayed": 16,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "minutesPlayed": 12,
            "touches": 6,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00714888
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00641789
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Ilias Kostis",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-kostis",
            "shortName": "I. Kostis",
            "position": "D",
            "jerseyNumber": "5",
            "height": 191,
            "userCount": 585,
            "id": 1145621,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046304000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Thomas Lemar",
            "firstName": "",
            "lastName": "",
            "slug": "thomas-lemar",
            "shortName": "T. Lemar",
            "position": "M",
            "jerseyNumber": "11",
            "height": 170,
            "userCount": 3268,
            "id": 191182,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 816134400,
            "proposedMarketValueRaw": {
                "value": 7700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 19,
            "totalLongBalls": 26,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "lastManTackle": 1,
            "totalTackle": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.6,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.5805
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0134,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 53,
            "totalLongBalls": 16,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 36,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 89,
            "touches": 53,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00575823
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00616103
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 32,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 72,
            "touches": 57,
            "rating": 7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0128,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0164726
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0776,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.125122
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 3,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.7,
            "possessionLostCtrl": 17,
            "expectedGoals": 1.1276,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0446615
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 30,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0199,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.010047
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 7,
            "wonContest": 5,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 44,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0221,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.122287
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 6,
            "aerialWon": 1,
            "duelLost": 12,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 72,
            "touches": 23,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1541,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0621664
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 5,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 20,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 18,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0147,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 4,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": -0.2146
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 32,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 3,
            "totalContest": 2,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.368759
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 49,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "penaltyConceded": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0141049
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 43,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 6,
            "duelLost": 1,
            "duelWon": 8,
            "blockedScoringAttempt": 1,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0362,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "totalClearance": 5,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 41,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 28,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 9,
            "duelWon": 3,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0212,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00783624
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 64,
            "touches": 35,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00720159
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.010776
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.1482,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.185445
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 79,
            "touches": 37,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0367,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0329478
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 5,
            "onTargetScoringAttempt": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 23,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2364,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0119227
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00537173
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 1,
            "totalOffside": 1,
            "minutesPlayed": 26,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0999,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 4,
            "shotOffTarget": 1,
            "fouls": 2,
            "minutesPlayed": 12,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0308,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nobel Mendy",
            "slug": "mendy-nobel",
            "shortName": "N. Mendy",
            "position": "D",
            "jerseyNumber": "32",
            "height": 187,
            "userCount": 176,
            "id": 1458073,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 19,
            "accurateLongBalls": 15,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 5,
            "saves": 6,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 8.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.00960109,
            "goalsPrevented": 1.121
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0104582
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "fouls": 2,
            "minutesPlayed": 67,
            "touches": 15,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0711,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0107563
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.2,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.3,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.025,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0868986
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0596,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0134203
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 2,
            "shotOffTarget": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 78,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0964,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0119004
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 4,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.3,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0785,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.166362
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 57,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0624,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0233075
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.1,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.105264
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 57,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0929,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 2,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 3,
            "totalOffside": 2,
            "minutesPlayed": 33,
            "touches": 14,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0281,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0413478
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalOffside": 2,
            "minutesPlayed": 33,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.2222,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 23,
            "touches": 9,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 51,
            "totalLongBalls": 18,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 3,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "totalKeeperSweeper": 4,
            "accurateKeeperSweeper": 4,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.3654
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 62,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 79,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0132454
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 117,
            "accuratePass": 111,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 2,
            "totalClearance": 6,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 128,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0111124
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 95,
            "accuratePass": 91,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 3,
            "minutesPlayed": 81,
            "touches": 103,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0641028
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 81,
            "touches": 40,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0200542
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 75,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 94,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0350791
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.2931,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.132955
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 7,
            "wonContest": 4,
            "blockedScoringAttempt": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 67,
            "touches": 33,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0277,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0850726
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 2,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 3,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 8.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.6102,
            "keyPass": 6,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 1.11934
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 6,
            "touches": 1,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 17,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 5,
            "blockedScoringAttempt": 1,
            "goals": 3,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 9.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 1.6639,
            "ratingVersions": {
                "original": 9.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 51,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 84,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0195,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.05067
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 23,
            "touches": 40,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0134108
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "hitWoodwork": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 23,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1481,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0114257
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 8,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Frenkie de Jong",
            "slug": "frenkie-de-jong",
            "shortName": "F. de Jong",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 124538,
            "id": 795222,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 863395200,
            "proposedMarketValueRaw": {
                "value": 56000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "\u00c1ron Yaakobishvili",
            "firstName": "\u00c1ron Yaakobishvili",
            "slug": "aron-yaakobishvili",
            "shortName": "\u00c1. Yaakobishvili",
            "position": "G",
            "jerseyNumber": "41",
            "height": 185,
            "userCount": 3136,
            "id": 1402902,
            "country": {
                "alpha2": "HU",
                "alpha3": "HUN",
                "name": "Hungary",
                "slug": "hungary"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1141603200,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 10,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "penaltySave": 2,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "goalsPrevented": 1.4162
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 74,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 4,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 3,
            "minutesPlayed": 89,
            "touches": 95,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0217184
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 94,
            "accuratePass": 79,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 6,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 105,
            "rating": 7.2,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0654,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0294137
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 71,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.2437,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0105517
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 43,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1169,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.381372
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 68,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 85,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0330332
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 48,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 10,
            "duelWon": 16,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 6,
            "wasFouled": 4,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1779,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0179304
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 43,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 4,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 89,
            "touches": 87,
            "rating": 8.4,
            "possessionLostCtrl": 26,
            "expectedGoals": 0.0678,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.806084
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0989,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.626731
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 59,
            "touches": 26,
            "rating": 5.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3182,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.0698239
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0701808
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0457678
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "outfielderBlock": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 1
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 10,
            "touches": 1,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "minutesPlayed": 10,
            "touches": 2,
            "rating": 6.9,
            "expectedGoals": 0.9103,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 17,
            "totalLongBalls": 25,
            "accurateLongBalls": 14,
            "goalAssist": 0,
            "errorLeadToAGoal": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": -0.0273
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0451,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00899309
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 78,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "minutesPlayed": 43,
            "touches": 27,
            "rating": 7.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.6477,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.179931
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0360383
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 30,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 79,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.8526,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0108273
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 1,
            "interceptionWon": 1,
            "wasFouled": 4,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.12494
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "minutesPlayed": 59,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2417,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.019422
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.9596,
            "keyPass": 2,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.409597
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 47,
            "touches": 16,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.2969,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 11,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 31,
            "touches": 12,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.207202
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "minutesPlayed": 12,
            "touches": 12,
            "rating": 6.5,
            "expectedGoals": 0.0601,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0391522
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 10,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0122185
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oier Gastesi",
            "slug": "oier-gastesi",
            "shortName": "O. Gastesi",
            "position": "G",
            "jerseyNumber": "1",
            "height": 190,
            "userCount": 27,
            "id": 1391376,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1067472000,
            "proposedMarketValueRaw": {
                "value": 160000,
                "currency": "EUR"
            }
        },
        "teamId": 24324,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Peio Canales",
            "firstName": "Peio Canales",
            "slug": "peio-canales",
            "shortName": "P. Canales",
            "position": "M",
            "jerseyNumber": "18",
            "height": 175,
            "userCount": 88,
            "id": 1464648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105920000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24324,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 3,
            "wasFouled": 1,
            "saves": 1,
            "punches": 3,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0143
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 62,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 5,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 85,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0358507
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 48,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00567078
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 61,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.2,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1564,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00749969
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 54,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00998784
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 86,
            "accuratePass": 76,
            "totalLongBalls": 10,
            "accurateLongBalls": 7,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 102,
            "rating": 8.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0547,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.214044
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 77,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 8.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0203,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.8,
                "alternative": null
            },
            "expectedAssists": 0.047381
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Eduardo Camavinga",
            "firstName": "",
            "lastName": "",
            "slug": "camavinga-eduardo",
            "shortName": "E. Camavinga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 182,
            "userCount": 155041,
            "id": 973887,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036886400,
            "proposedMarketValueRaw": {
                "value": 95000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 61,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 6,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 82,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0417705
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 59,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.085,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0693992
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 71,
            "touches": 37,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0764,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0858518
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 52,
            "rating": 8.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0759,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0484062
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 20,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 19,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jacobo Naveros",
            "firstName": "",
            "lastName": "",
            "slug": "jacobo-naveros",
            "shortName": "J. Naveros",
            "position": "D",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 1820,
            "id": 1403348,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1104969600,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "goodHighClaim": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.1,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "goalsPrevented": -1.5338
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 59,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0236823
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "minutesPlayed": 68,
            "touches": 39,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 49,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00828573
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 2,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 46,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0477167
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 64,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 10,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0281615
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 64,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 5,
            "dispossessed": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 79,
            "touches": 72,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0237271
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1587,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.231179
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 31,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "totalOffside": 1,
            "minutesPlayed": 68,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1961,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0468183
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.6973,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00954145
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 37,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0533,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.109541
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 22,
            "touches": 23,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00665158
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 22,
            "touches": 15,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0181,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.381257
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 22,
            "touches": 15,
            "rating": 7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 11,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0295,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00677409
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 14,
            "rating": 6.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 12,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 3,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.1506
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 43,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0935399
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 46,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 75,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00774244
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 42,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2349,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00945994
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 58,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 58,
            "touches": 36,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0203,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0351325
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 78,
            "accuratePass": 74,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 5,
            "duelLost": 1,
            "duelWon": 12,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 8.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0696,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.135975
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Adnan Januzaj",
            "slug": "adnan-januzaj",
            "shortName": "A. Januzaj",
            "position": "M",
            "jerseyNumber": "24",
            "height": 186,
            "userCount": 1624,
            "id": 328145,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791942400,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 25,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 17,
            "accurateCross": 7,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7.5,
            "possessionLostCtrl": 27,
            "expectedGoals": 0.2116,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.402236
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 27,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1717,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0107902
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 41,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 3,
            "totalContest": 5,
            "wonContest": 4,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 3,
            "totalClearance": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.3366,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.133914
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.022,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0230287
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 30,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 32,
            "touches": 44,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0291,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.131153
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 32,
            "touches": 43,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1106,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.240696
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 4,
            "totalContest": 1,
            "minutesPlayed": 23,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.061727
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 23,
            "touches": 2,
            "rating": 6.2,
            "expectedGoals": 0.13,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 34,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0342,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.063778
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alvaro Killane",
            "firstName": "\u00c1lvaro Killane",
            "lastName": "",
            "slug": "killane-alvaro",
            "shortName": "\u00c1. Killane",
            "position": "G",
            "jerseyNumber": "30",
            "height": 186,
            "userCount": 61,
            "id": 1402668,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1102982400
        },
        "teamId": 24369,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Daley Sinkgraven",
            "slug": "daley-sinkgraven",
            "shortName": "D. Sinkgraven",
            "position": "D",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 274,
            "id": 377206,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Valentin Pezzolesi",
            "slug": "valentin-pezzolesi",
            "shortName": "V. Pezzolesi",
            "position": "D",
            "jerseyNumber": "27",
            "userCount": 47,
            "id": 1893819,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1176681600
        },
        "teamId": 24369,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 14,
            "totalLongBalls": 25,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 8.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "goalsPrevented": 0.9067
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 61,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0120219
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 10,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 65,
            "rating": 7.5,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0771,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.282841
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 41,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 3,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0062,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0167882
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 3,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 54,
            "touches": 39,
            "rating": 5.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0162,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.0292752
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 6,
            "wonContest": 4,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 63,
            "rating": 7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0541956
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 56,
            "touches": 34,
            "rating": 6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0352945
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 24,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.5153,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "totalContest": 1,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0124389
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 10,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 13,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 2,
            "duelLost": 11,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 28,
            "touches": 20,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1457,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 2,
            "interceptionWon": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalClearance": 4,
            "minutesPlayed": 1,
            "touches": 5,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.6739
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 16,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.218517
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2332,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 53,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00560425
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0432,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 7,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1116,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00972541
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "shotOffTarget": 1,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0451,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 8,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 83,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 1.1756,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0266882
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 68,
            "touches": 23,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0752,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0131225
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.014845
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.245026
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 7,
            "accurateCross": 3,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 7.7,
            "possessionLostCtrl": 10,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.618129
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1593,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0274848
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Anuar",
            "slug": "anuar",
            "shortName": "Anuar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 172,
            "userCount": 753,
            "id": 601962,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790128000,
            "proposedMarketValueRaw": {
                "value": 945000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0646\u0648\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 22,
            "touches": 11,
            "rating": 6.7,
            "expectedGoals": 0.0167,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.225802
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 13,
            "touches": 8,
            "rating": 7,
            "expectedGoals": 0.1272,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0141444
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Alvaro Aceves Catalina",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-aceves-catalina",
            "shortName": "A. A. Catalina",
            "position": "G",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1112734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1059177600,
            "proposedMarketValueRaw": {
                "value": 580000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u064a\u0641\u064a\u0633 \u060c \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u0644\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 24361,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 17,
            "totalLongBalls": 16,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.2433
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.3,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1793,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0220538
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 58,
            "totalLongBalls": 10,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 8,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0275,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0107053
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 52,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0688,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00888235
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00969302
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 8.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.7689,
            "ratingVersions": {
                "original": 8.6,
                "alternative": null
            },
            "expectedAssists": 0.0382786
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 63,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0158663
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 59,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 77,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0339,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.071741
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 63,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0198,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.277533
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 51,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1132,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0837369
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 77,
            "touches": 30,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0447,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0162541
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 4,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 19,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.529205
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 27,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00740257
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 13,
            "touches": 17,
            "rating": 7.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1909,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0708032
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1273,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 8,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.160114
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Marco de las Sias",
            "slug": "marco-de-las-sias",
            "shortName": "M. d. l. S\u00edas",
            "position": "D",
            "jerseyNumber": "26",
            "userCount": 26,
            "id": 1893146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1135814400
        },
        "teamId": 43756,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 9,
            "totalLongBalls": 19,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.4896
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "totalClearance": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.127382
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 1,
            "duelWon": 7,
            "totalClearance": 11,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 83,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 18,
            "totalLongBalls": 12,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 7,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0934,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0112128
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 10,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.5,
            "possessionLostCtrl": 27,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.082354
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 6,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0795,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0157953
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 9,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.6,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0718,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00603992
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0173,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.333044
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1068,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.447786
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 4,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 13,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.3862,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0468,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.019945
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0233278
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Borja Mayoral",
            "firstName": "",
            "lastName": "",
            "slug": "borja-mayoral",
            "shortName": "B. Mayoral",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2825,
            "id": 604954,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860198400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0107377
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalTackle": 1,
            "minutesPlayed": 16,
            "touches": 13,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.013362
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 16,
            "touches": 13,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0249,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0110293
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 30,
            "totalLongBalls": 17,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.4235
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 4,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 6,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.7,
            "possessionLostCtrl": 29,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0916136
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 32,
            "totalLongBalls": 14,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 9,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 11,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0146,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.134636
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 7,
            "aerialWon": 6,
            "duelLost": 10,
            "duelWon": 15,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.9,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.1453,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0184342
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 79,
            "touches": 39,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0121215
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 58,
            "touches": 34,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0307637
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 8,
            "aerialWon": 5,
            "duelLost": 12,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1024,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0332537
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 3,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 79,
            "touches": 29,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0101295
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 32,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0769,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 12,
            "totalLongBalls": 19,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 1.576
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 9,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 8,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 9,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 9,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 8.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.5547,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0246,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0616327
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 5,
            "duelWon": 13,
            "challengeLost": 1,
            "totalClearance": 5,
            "totalTackle": 6,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00660338
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 40,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0985147
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 5,
            "fouls": 2,
            "minutesPlayed": 83,
            "touches": 37,
            "rating": 8.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1648,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.556055
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0153,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0565744
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 55,
            "touches": 21,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1173,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0435545
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "wasFouled": 3,
            "minutesPlayed": 83,
            "touches": 22,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0563,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.012229
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 35,
            "touches": 23,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 6,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 19,
            "touches": 8,
            "rating": 6.8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "minutesPlayed": 18,
            "touches": 5,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0059092,
            "goalsPrevented": -0.8614
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 5,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.2,
            "possessionLostCtrl": 20,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.282562
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 39,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 5,
            "aerialWon": 8,
            "duelLost": 10,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 5,
            "interceptionWon": 4,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 8.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.8429,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.182981
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 56,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 7,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0142804
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 61,
            "touches": 49,
            "rating": 5.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1343,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.00759868
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 61,
            "touches": 30,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0088585
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 50,
            "totalLongBalls": 11,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 80,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0128745
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 45,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 11,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 6,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 6.4,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0183,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0145813
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "minutesPlayed": 61,
            "touches": 34,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0142,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0148033
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00560546
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 7,
            "aerialWon": 2,
            "duelLost": 15,
            "duelWon": 3,
            "dispossessed": 5,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2219,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 3,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 29,
            "touches": 32,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.144034
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 29,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0490449
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 24,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1008,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0225636
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 29,
            "touches": 6,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.3972,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 10,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0793,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 15,
            "totalLongBalls": 15,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.1825
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.1,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0952,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0132559
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 90,
            "accuratePass": 78,
            "totalLongBalls": 17,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 9,
            "dispossessed": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0132537
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 73,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 6,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0160444
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 51,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 70,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0145198
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 49,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 84,
            "touches": 64,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0233,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0383576
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 84,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0262,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.213009
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.3801,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.110724
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0286711
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalOffside": 3,
            "minutesPlayed": 63,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0584,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0154671
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 27,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0822,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 19,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00668351
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0296511
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 10,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1257,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 16,
            "totalLongBalls": 18,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0143289
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 27,
            "totalLongBalls": 15,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0123,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 42,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 32,
            "totalLongBalls": 15,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.2,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0187666
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 6,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0438,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00621414
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 29,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00663778
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 41,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0784616
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 73,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0170605
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 86,
            "touches": 30,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.216101
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 6,
            "duelLost": 10,
            "duelWon": 10,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 4,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 73,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0706,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0159844
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 12,
            "rating": 7.1,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0897,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.126442
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 17,
            "touches": 16,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.3223,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 4,
            "touches": 2
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": -0.5565
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 3,
            "totalTackle": 6,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0135,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0823438
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 39,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2216,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00584972
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 48,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0555119
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1243,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.199374
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 8,
            "totalContest": 5,
            "wonContest": 4,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 56,
            "rating": 7.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1778,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.202052
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 60,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0501843
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 38,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 58,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.048,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0339906
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0781,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.101993
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 88,
            "touches": 44,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.5518,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0520355
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 2,
            "totalOffside": 4,
            "minutesPlayed": 90,
            "touches": 18,
            "rating": 8.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.5243,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.210373
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "hitWoodwork": 1,
            "goals": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 41,
            "rating": 8.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 1.05,
            "keyPass": 2,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 8.6,
                "alternative": null
            },
            "expectedAssists": 0.970864
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 21,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 13,
            "touches": 2,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0179427
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Etta Eyong",
            "firstName": "Etta Eyong",
            "lastName": "",
            "slug": "etta-eyong",
            "shortName": "E. Eyong",
            "position": "F",
            "jerseyNumber": "36",
            "height": 181,
            "userCount": 188,
            "id": 1393673,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1072915200,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 36,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "savedShotsFromInsideTheBox": 3,
            "penaltySave": 1,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": -0.6946
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 63,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0526,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 83,
            "accuratePass": 82,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 81,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00703973
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 61,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0598969
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Adnan Januzaj",
            "slug": "adnan-januzaj",
            "shortName": "A. Januzaj",
            "position": "M",
            "jerseyNumber": "24",
            "height": 186,
            "userCount": 1624,
            "id": 328145,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791942400,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 77,
            "touches": 51,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0184,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.168716
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 52,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 3,
            "minutesPlayed": 86,
            "touches": 61,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0136036
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 60,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 62,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0327551
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 38,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0483,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.729979
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 3,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 62,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0328,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00711011
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.6758,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00716704
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 28,
            "touches": 20,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0272,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0263236
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "minutesPlayed": 28,
            "touches": 33,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00576131
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 32,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00510843
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 12,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "wasFouled": 1,
            "minutesPlayed": 14,
            "touches": 2,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alvaro Killane",
            "firstName": "\u00c1lvaro Killane",
            "lastName": "",
            "slug": "killane-alvaro",
            "shortName": "\u00c1. Killane",
            "position": "G",
            "jerseyNumber": "30",
            "height": 186,
            "userCount": 61,
            "id": 1402668,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1102982400
        },
        "teamId": 24369,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Daley Sinkgraven",
            "slug": "daley-sinkgraven",
            "shortName": "D. Sinkgraven",
            "position": "D",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 274,
            "id": 377206,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.4905
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 35,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00882044
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 52,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "totalClearance": 6,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00656668
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 58,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "duelWon": 4,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 47,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 68,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00851957
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 56,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7.1,
            "possessionLostCtrl": 18,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.120006
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "lastManTackle": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0318,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0473177
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 44,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 58,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0331,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0109809
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 23,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 40,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1138,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.201268
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 45,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0851,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0844278
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 56,
            "touches": 20,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0775,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 40,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 45,
            "touches": 55,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0246633
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 34,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1737,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0818235
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 20,
            "touches": 15,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.7688,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 15,
            "touches": 13,
            "rating": 7.5,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.265602
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 15,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0197634
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Thomas Lemar",
            "firstName": "",
            "lastName": "",
            "slug": "thomas-lemar",
            "shortName": "T. Lemar",
            "position": "M",
            "jerseyNumber": "11",
            "height": 170,
            "userCount": 3268,
            "id": 191182,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 816134400,
            "proposedMarketValueRaw": {
                "value": 7700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 21,
            "totalLongBalls": 15,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.5567
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 39,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2388,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0474652
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 51,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 6,
            "outfielderBlock": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 49,
            "totalLongBalls": 13,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0281,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.010869
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00828347
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 58,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0562,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0421467
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 58,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 86,
            "touches": 72,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.446949
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 56,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 4,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0578,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0200535
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 55,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.195,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0225598
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 89,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0743,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0692558
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 48,
            "rating": 7.3,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0645,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.33149
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "minutesPlayed": 15,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 2,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0498,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0163658
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jacobo Naveros",
            "firstName": "",
            "lastName": "",
            "slug": "jacobo-naveros",
            "shortName": "J. Naveros",
            "position": "D",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 1820,
            "id": 1403348,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1104969600,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Eduardo Camavinga",
            "firstName": "",
            "lastName": "",
            "slug": "camavinga-eduardo",
            "shortName": "E. Camavinga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 182,
            "userCount": 155041,
            "id": 973887,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036886400,
            "proposedMarketValueRaw": {
                "value": 95000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.4711
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelWon": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.256852
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 51,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0174,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.122553
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 48,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0166,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.157285
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0128299
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 38,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 48,
            "rating": 7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1271,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0346972
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 42,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 78,
            "touches": 61,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0497,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0455627
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 61,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1298,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0328967
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 3,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 4,
            "goals": 1,
            "wasFouled": 7,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 9,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.3644,
            "keyPass": 4,
            "ratingVersions": {
                "original": 9,
                "alternative": null
            },
            "expectedAssists": 0.595155
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 2,
            "duelLost": 11,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 5,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 3,
            "wasFouled": 4,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 88,
            "touches": 52,
            "rating": 7.2,
            "possessionLostCtrl": 22,
            "expectedGoals": 1.2296,
            "keyPass": 5,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.199829
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1052,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0119197
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 26,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2124,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0212283
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "minutesPlayed": 12,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00807519
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 16,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 8,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.011468
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nobel Mendy",
            "slug": "mendy-nobel",
            "shortName": "N. Mendy",
            "position": "D",
            "jerseyNumber": "32",
            "height": 187,
            "userCount": 176,
            "id": 1458073,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 20,
            "totalLongBalls": 15,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 3,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 6,
            "penaltySave": 1,
            "saves": 10,
            "punches": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 9.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 9.5,
                "alternative": null
            },
            "goalsPrevented": 1.1711
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 12,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 6,
            "interceptionWon": 4,
            "totalTackle": 8,
            "penaltyConceded": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 50,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0261,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 52,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 56,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3121,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0600355
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 31,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0151,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0134776
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 39,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 9,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 6,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0273,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0106714
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 41,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 87,
            "touches": 58,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0493819
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "minutesPlayed": 55,
            "touches": 24,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0258384
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0403,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0192529
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 4,
            "fouls": 4,
            "minutesPlayed": 68,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0275,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00554645
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 35,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0275,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 13,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.136035
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00607159
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 12,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "minutesPlayed": 12,
            "touches": 2,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 14,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 82,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": 0.0583
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 17,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 2,
            "interceptionWon": 2,
            "lastManTackle": 1,
            "totalTackle": 4,
            "minutesPlayed": 71,
            "touches": 53,
            "rating": 7.4,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0741265
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "hitWoodwork": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00512791
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 31,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 22,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00768451
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 11,
            "duelWon": 7,
            "challengeLost": 3,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0921,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0121582
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 3,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.18113
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 85,
            "touches": 39,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1489,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.459984
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 59,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0689,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0134287
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "minutesPlayed": 71,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.5969,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.117355
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.938,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0241599
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 31,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0167867
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "minutesPlayed": 31,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1052,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.027636
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 19,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Peio Canales",
            "firstName": "Peio Canales",
            "slug": "peio-canales",
            "shortName": "P. Canales",
            "position": "M",
            "jerseyNumber": "18",
            "height": 175,
            "userCount": 88,
            "id": 1464648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105920000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24324,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 19,
            "touches": 19,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.023,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00559727
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "ownGoals": 1,
            "saves": 2,
            "minutesPlayed": 13,
            "touches": 5,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -0.7756
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 27,
            "totalLongBalls": 17,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": 0.3512
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 9,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 7,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 78,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0177,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0131091
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 73,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "lastManTackle": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0119056
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 63,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 6,
            "interceptionWon": 4,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0112894
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 45,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 86,
            "touches": 70,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0637,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0332067
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 44,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 4,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0503,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0399395
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 25,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 3,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.6376,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0479777
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 10,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 28,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.079,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0124642
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 5,
            "totalContest": 8,
            "wonContest": 6,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.4,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1658,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0434676
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "totalOffside": 2,
            "minutesPlayed": 59,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00859875
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 31,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1433,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0401428
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 11,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Mateo Mejia",
            "slug": "mateo-mejia",
            "shortName": "M. Mejia",
            "position": "M",
            "jerseyNumber": "9",
            "height": 188,
            "userCount": 317,
            "id": 1134538,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049068800,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 10,
            "touches": 2,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 12,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Mat\u00edas \u00c1rbol",
            "firstName": "",
            "lastName": "",
            "slug": "matias-arbol",
            "shortName": "M. \u00c1rbol",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 26,
            "id": 1192489,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031788800,
            "proposedMarketValueRaw": {
                "value": 96000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Manu Bueno",
            "slug": "bueno-manu",
            "shortName": "M. Bueno",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 140,
            "id": 1142094,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090886400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Bueno Sebastian, Manuel"
                },
                "shortNameTranslation": {
                    "ar": "M. B. Sebastian"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 2,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.5204
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 57,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00719595
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 63,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0895,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00774485
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 76,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0434,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0947942
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0200873
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 65,
            "touches": 44,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0938,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0487962
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 61,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0181,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.230104
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 54,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.1,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.16599
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 23,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0591,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0547641
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 58,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.03359
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "minutesPlayed": 58,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0271675
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0392,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.107783
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 32,
            "touches": 22,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0213,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0975627
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 32,
            "touches": 9,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0147,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 25,
            "touches": 33,
            "rating": 7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0516796
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 22,
            "rating": 7.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0752,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0241807
        },
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 36,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.44
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 56,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0163496
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 67,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "minutesPlayed": 54,
            "touches": 72,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.392791
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 83,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 103,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0335,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00992107
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 51,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0554862
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 68,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0339332
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 14,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.177215
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 4,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0666,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.532982
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 59,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.386,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0178981
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0875,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.08112
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 16,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0633,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "challengeLost": 1,
            "totalClearance": 3,
            "fouls": 3,
            "minutesPlayed": 76,
            "touches": 42,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.141124
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 36,
            "touches": 32,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "minutesPlayed": 18,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1262,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00915448
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 23,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0328,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00579088
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 18,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00953506
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 8,
            "totalLongBalls": 21,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 3,
            "errorLeadToAGoal": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6.2,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -0.5923
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 35,
            "rating": 6.7,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0217,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0377265
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 7,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 2,
            "totalClearance": 10,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0156,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0219603
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "duelLost": 10,
            "duelWon": 1,
            "challengeLost": 4,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "outfielderBlock": 1,
            "interceptionWon": 6,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0639,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.116716
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 24,
            "totalLongBalls": 13,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 7,
            "duelWon": 12,
            "dispossessed": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0742275
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0177235
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "totalOffside": 2,
            "minutesPlayed": 59,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0296,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "wasFouled": 1,
            "fouls": 1,
            "penaltyWon": 1,
            "totalOffside": 3,
            "minutesPlayed": 77,
            "touches": 25,
            "rating": 8.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.9879,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 31,
            "rating": 8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.9693,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.350489
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 31,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0605833
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 12,
            "rating": 7.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0611,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 3,
            "rating": 6.7,
            "expectedGoals": 0.0798,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalClearance": 2,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 3,
            "rating": 6.1,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Dimitrios Stamatakis",
            "slug": "stamatakis-dimitrios",
            "shortName": "D. Stamatakis",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 89,
            "id": 1163077,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051056000,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24328,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 4,
            "accurateKeeperSweeper": 4,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "goalsPrevented": -1.109
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 62,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 99,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0332,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.334354
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 90,
            "accuratePass": 86,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 95,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.016704
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 97,
            "accuratePass": 88,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0887129
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "minutesPlayed": 70,
            "touches": 54,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0627295
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 49,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0804686
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 70,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0133,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.292793
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 63,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 98,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0836222
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2337,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0674833
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 70,
            "touches": 23,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.3596,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.030884
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 59,
            "touches": 43,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0419,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00739038
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 31,
            "touches": 35,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1002,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.155245
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 31,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0278,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0699051
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 20,
            "touches": 23,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00649007
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 20,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0203,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0252766
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 12,
            "touches": 10,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00679491
        },
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "\u00c1ron Yaakobishvili",
            "firstName": "\u00c1ron Yaakobishvili",
            "slug": "aron-yaakobishvili",
            "shortName": "\u00c1. Yaakobishvili",
            "position": "G",
            "jerseyNumber": "41",
            "height": 185,
            "userCount": 3136,
            "id": 1402902,
            "country": {
                "alpha2": "HU",
                "alpha3": "HUN",
                "name": "Hungary",
                "slug": "hungary"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1141603200,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Andr\u00e9s Cuenca",
            "firstName": "Andr\u00e9s Cuenca",
            "slug": "andres-cuenca",
            "shortName": "A. Cuenca",
            "position": "D",
            "jerseyNumber": "27",
            "height": 181,
            "userCount": 4193,
            "id": 1503832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1181520000,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Guillermo Fern\u00e1ndez",
            "firstName": "Guillermo Fern\u00e1ndez",
            "slug": "guillermo-fernandez",
            "shortName": "G. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 171,
            "userCount": 4356,
            "id": 1544614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1213747200,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Toni Fern\u00e1ndez",
            "slug": "toni-fernandez",
            "shortName": "T. Fern\u00e1ndez",
            "position": "F",
            "jerseyNumber": "42",
            "height": 186,
            "userCount": 3646,
            "id": 1590761,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1216080000,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 18,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 0.1614
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 38,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelWon": 13,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 11,
            "minutesPlayed": 85,
            "touches": 81,
            "rating": 8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0857,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.00521059
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 48,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 4,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 68,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.473,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00835215
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 45,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.3,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.617836
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 49,
            "totalLongBalls": 10,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 6,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0207797
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 4,
            "dispossessed": 4,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 85,
            "touches": 51,
            "rating": 7.2,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.7562,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0688755
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 34,
            "rating": 7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.130166
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 53,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 2,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 9.2,
            "possessionLostCtrl": 15,
            "keyPass": 6,
            "ratingVersions": {
                "original": 9.2,
                "alternative": null
            },
            "expectedAssists": 1.04163
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "fouls": 2,
            "minutesPlayed": 60,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1076,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0129309
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 61,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2893,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0178047
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 3,
            "goals": 2,
            "totalOffside": 2,
            "minutesPlayed": 29,
            "touches": 11,
            "rating": 8.1,
            "possessionLostCtrl": 2,
            "expectedGoals": 1.7774,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 12,
            "rating": 7.2,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.659594
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "minutesPlayed": 9,
            "touches": 8,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 15,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.123504
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 18,
            "totalLongBalls": 11,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.1149
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.3,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0082,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0232481
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 31,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 5.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.5876,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 32,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0241,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0110342
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 37,
            "touches": 23,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 21,
            "rating": 6.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00623887
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 77,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0178,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.117455
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0202,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.196684
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0222,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0075471
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 1,
            "dispossessed": 4,
            "totalContest": 2,
            "totalTackle": 1,
            "minutesPlayed": 62,
            "touches": 25,
            "rating": 6.2,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0161317
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "duelLost": 11,
            "duelWon": 3,
            "dispossessed": 4,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0153027
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 53,
            "touches": 40,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0104394
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "minutesPlayed": 28,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0292,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "blockedScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 28,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0674,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 10,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 20,
            "totalLongBalls": 16,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0875
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0904,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.016067
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 41,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0161,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.014283
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 52,
            "totalLongBalls": 13,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 5,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0403177
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 46,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0398,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0127528
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 53,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1543,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0105257
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "goalAssist": 0,
            "duelLost": 14,
            "duelWon": 4,
            "challengeLost": 4,
            "dispossessed": 4,
            "totalContest": 5,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 80,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1974,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0218072
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 31,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 52,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0379,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.167424
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 46,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.147804
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 27,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2049,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.170657
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 3,
            "minutesPlayed": 27,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0101914
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00792671
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1693,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0122885
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 3,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 16,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0124909
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0309476
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Marco de las Sias",
            "slug": "marco-de-las-sias",
            "shortName": "M. d. l. S\u00edas",
            "position": "D",
            "jerseyNumber": "26",
            "userCount": 26,
            "id": 1893146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1135814400
        },
        "teamId": 43756,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 13,
            "totalLongBalls": 22,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.8,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 0.3847
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0152,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.137351
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 53,
            "totalLongBalls": 18,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "interceptionWon": 4,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.3638,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00822312
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 6,
            "outfielderBlock": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.100256
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 64,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0275,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0267286
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 45,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.1,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.179917
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 5,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 85,
            "touches": 47,
            "rating": 7.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2198,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0483461
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 43,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 3,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.6,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.028,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.136872
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 29,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0954,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0169262
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0845,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0351,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00553805
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 10,
            "touches": 4,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 9,
            "totalLongBalls": 22,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalClearance": 4,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.016362,
            "goalsPrevented": 0.1777
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0689173
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 6,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2005,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 13,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 7,
            "duelLost": 9,
            "duelWon": 10,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 8,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0329,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0488593
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 9,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.4,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1544,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.163314
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 8,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3479,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.23242
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 5,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 28,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0322,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 4,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 8,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 6,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 8.1,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.7884,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.211156
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 4,
            "totalContest": 3,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 70,
            "touches": 36,
            "rating": 6.4,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0092,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0105425
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 10,
            "duelWon": 16,
            "totalContest": 7,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 9,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 44,
            "rating": 7.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.4649,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 10,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 74,
            "touches": 30,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0941,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "goalAssist": 0,
            "totalClearance": 2,
            "minutesPlayed": 20,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00647154
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Borja Mayoral",
            "firstName": "",
            "lastName": "",
            "slug": "borja-mayoral",
            "shortName": "B. Mayoral",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2825,
            "id": 604954,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860198400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 16,
            "touches": 6,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 1,
            "touches": 2
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lvaro Rodriguez",
            "slug": "alvaro-rodriguez",
            "shortName": "\u00c1. Rodriguez",
            "position": "F",
            "jerseyNumber": "18",
            "height": 193,
            "userCount": 6326,
            "id": 1154587,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1089763200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 1,
            "touches": 4,
            "expectedGoals": 0.0832
        },
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 17,
            "totalLongBalls": 26,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.364
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 10,
            "totalLongBalls": 11,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 7,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.168961
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 5,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 2,
            "totalClearance": 4,
            "interceptionWon": 2,
            "lastManTackle": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 55,
            "touches": 23,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 4,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 54,
            "touches": 22,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 7,
            "duelLost": 6,
            "duelWon": 14,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 4,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.015846
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 20,
            "totalLongBalls": 15,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.1,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.2156,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0189769
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 3,
            "minutesPlayed": 54,
            "touches": 20,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00672643
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 6,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.2,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1224,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.126261
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 11,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.1,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.1375,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0278136
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 3,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0297267
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 6,
            "duelLost": 7,
            "duelWon": 8,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "penaltyConceded": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 69,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0341,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 36,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "dispossessed": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 36,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00666783
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 35,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 21,
            "touches": 3,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.7926
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 51,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.166405
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 47,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 6,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00503872
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 45,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 72,
            "touches": 63,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "errorLeadToAGoal": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.132902
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0693,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0215755
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 36,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 8,
            "challengeLost": 3,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1026,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00992573
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 65,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0672,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00525898
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.154,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.09308
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 4,
            "duelLost": 11,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1895,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.102825
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 51,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.5561,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00758917
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 39,
            "touches": 38,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 8,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "minutesPlayed": 39,
            "touches": 31,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.101,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0277848
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 25,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 25,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Maroto",
            "firstName": "",
            "lastName": "",
            "slug": "mario-maroto",
            "shortName": "M. Maroto",
            "position": "M",
            "jerseyNumber": "34",
            "height": 176,
            "userCount": 23,
            "id": 1086415,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041379200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "minutesPlayed": 18,
            "touches": 20,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0260441
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 16,
            "totalLongBalls": 26,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 5.9,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "goalsPrevented": -0.124
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 9,
            "totalContest": 5,
            "wonContest": 4,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0839,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.120567
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 5,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0393,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 40,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 8,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2417,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0695417
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 86,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0215,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0251084
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0228,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00923131
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 50,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 8,
            "challengeLost": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0945,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0214391
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 76,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 19,
            "keyPass": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.198228
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 76,
            "touches": 30,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.304126
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 2,
            "duelLost": 10,
            "duelWon": 3,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 22,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.9871,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 25,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "minutesPlayed": 15,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0188,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 14,
            "touches": 9,
            "rating": 7.4,
            "expectedGoals": 0.7528,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 11,
            "touches": 9,
            "rating": 6.7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sebas Wade",
            "firstName": "",
            "lastName": "",
            "slug": "sebas-wade",
            "shortName": "S. Wade",
            "position": "D",
            "jerseyNumber": "39",
            "height": 190,
            "userCount": 13,
            "id": 1177442,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049846400,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 34997,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.0261
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 63,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 70,
            "touches": 81,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0502816
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 104,
            "accuratePass": 100,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 3,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "interceptionWon": 6,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 115,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0171081
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 105,
            "accuratePass": 94,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 4,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 116,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0418414
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 28,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.876434
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 80,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.170451
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 82,
            "accuratePass": 77,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 84,
            "touches": 87,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0831,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0399075
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 6.5,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0236407
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 45,
            "rating": 7.2,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2169,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0728118
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 76,
            "touches": 34,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.4846,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0275063
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 70,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.4624,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0408709
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1797,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.295838
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 10,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1032,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.137529
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 14,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00517783
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 11,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 7.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 1.0915
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 42,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 84,
            "touches": 67,
            "rating": 6.5,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0153,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0218912
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 51,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0859,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00809943
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 51,
            "totalLongBalls": 14,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0273202
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0052808
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00868275
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "interceptionWon": 2,
            "minutesPlayed": 54,
            "touches": 37,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00584903
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 8,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.6,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0289141
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 24,
            "rating": 6.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00642557
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 7,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.5,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.0573,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.657055
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 2,
            "duelWon": 8,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0567,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0246233
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 36,
            "touches": 24,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.3471,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.041112
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0554,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00960553
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "minutesPlayed": 26,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0149845
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "minutesPlayed": 11,
            "touches": 4,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0063473
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javier Serrano",
            "slug": "javier-serrano",
            "shortName": "J. Serrano",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 293,
            "id": 1019320,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042675200,
            "proposedMarketValueRaw": {
                "value": 525000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a \u0633\u064a\u0631\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u064a\u0631\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 24326,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 47,
            "totalLongBalls": 16,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0612
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 6,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.554177
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 49,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 8,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 71,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Daley Sinkgraven",
            "slug": "daley-sinkgraven",
            "shortName": "D. Sinkgraven",
            "position": "D",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 274,
            "id": 377206,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00605418
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 48,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 74,
            "touches": 68,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0148,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0120048
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 44,
            "touches": 13,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 42,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 12,
            "challengeLost": 2,
            "dispossessed": 4,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0311,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00656732
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 43,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0178,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0186004
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 47,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.3602,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0374719
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 61,
            "rating": 7.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.5216,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.112307
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 46,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 41,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0249,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0105049
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 14,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 10,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0297,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Adnan Januzaj",
            "slug": "adnan-januzaj",
            "shortName": "A. Januzaj",
            "position": "M",
            "jerseyNumber": "24",
            "height": 186,
            "userCount": 1624,
            "id": 328145,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791942400,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 11,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": 0.0408
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 41,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0975082
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 54,
            "totalLongBalls": 9,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 7,
            "duelLost": 1,
            "duelWon": 9,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00648901
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "bigChanceCreated": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.6,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.492846
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0119,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.108552
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.3727,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.016315
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 64,
            "touches": 52,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1932,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0124592
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 39,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.2,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.0475,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.572448
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "duelLost": 5,
            "duelWon": 13,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 5,
            "wasFouled": 6,
            "minutesPlayed": 82,
            "touches": 71,
            "rating": 9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.6246,
            "keyPass": 3,
            "ratingVersions": {
                "original": 9,
                "alternative": null
            },
            "expectedAssists": 0.368497
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 5,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 45,
            "rating": 6.1,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.2104,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0486761
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 64,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2868,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.372825
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 26,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.17,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0147,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "minutesPlayed": 8,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nobel Mendy",
            "slug": "mendy-nobel",
            "shortName": "N. Mendy",
            "position": "D",
            "jerseyNumber": "32",
            "height": 187,
            "userCount": 176,
            "id": 1458073,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.5675
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 67,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 6.7,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.194141
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 72,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 90,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0110763
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 31,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "interceptionWon": 1,
            "minutesPlayed": 73,
            "touches": 43,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0185586
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "interceptionWon": 1,
            "minutesPlayed": 64,
            "touches": 43,
            "rating": 6.2,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.109836
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 41,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 5,
            "wonContest": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00592891
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 6,
            "fouls": 3,
            "minutesPlayed": 73,
            "touches": 42,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0199393
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 80,
            "touches": 40,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.067,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0133937
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.2151,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0284526
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 4,
            "duelWon": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 41,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0256855
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 17,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0182,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00713972
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 17,
            "touches": 16,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0497,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0102361
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 10,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0569,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "goodHighClaim": 5,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": -0.5635
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0101468
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 36,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 53,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0196,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00735351
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 11,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "minutesPlayed": 80,
            "touches": 47,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0407,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.323827
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 47,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.215513
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 44,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0257,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0572269
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 2,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "outfielderBlock": 1,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 35,
            "rating": 7.6,
            "possessionLostCtrl": 11,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.346831
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 19,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "goals": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 74,
            "touches": 37,
            "rating": 8.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.5318,
            "ratingVersions": {
                "original": 8.6,
                "alternative": null
            },
            "expectedAssists": 0.0150222
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 3,
            "shotOffTarget": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 5.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.9858,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            },
            "expectedAssists": 0.012708
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 54,
            "touches": 40,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 24,
            "touches": 19,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 24,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 4,
            "minutesPlayed": 16,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0159497
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 30,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 4,
            "accurateKeeperSweeper": 4,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.0555
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 54,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 100,
            "rating": 8.1,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.214805
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 77,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 4,
            "minutesPlayed": 88,
            "touches": 88,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0233049
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 108,
            "accuratePass": 101,
            "totalLongBalls": 15,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 117,
            "rating": 7.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0292175
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 43,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 9,
            "totalContest": 6,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 5,
            "minutesPlayed": 88,
            "touches": 72,
            "rating": 7.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0627,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.111672
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 59,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3771,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.126554
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 60,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1158,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0292623
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 12,
            "duelWon": 9,
            "dispossessed": 5,
            "totalContest": 11,
            "wonContest": 5,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.1,
            "possessionLostCtrl": 26,
            "expectedGoals": 0.0955,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0539062
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 63,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.071078
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 42,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.8,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.6106,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.194326
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 1,
            "totalOffside": 3,
            "minutesPlayed": 77,
            "touches": 23,
            "rating": 7.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.6696,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.027037
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 13,
            "touches": 12,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00926746
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 2,
            "touches": 6
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "minutesPlayed": 2,
            "touches": 5
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "\u00c1ron Yaakobishvili",
            "firstName": "\u00c1ron Yaakobishvili",
            "slug": "aron-yaakobishvili",
            "shortName": "\u00c1. Yaakobishvili",
            "position": "G",
            "jerseyNumber": "41",
            "height": 185,
            "userCount": 3136,
            "id": 1402902,
            "country": {
                "alpha2": "HU",
                "alpha3": "HUN",
                "name": "Hungary",
                "slug": "hungary"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1141603200,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Andr\u00e9s Cuenca",
            "firstName": "Andr\u00e9s Cuenca",
            "slug": "andres-cuenca",
            "shortName": "A. Cuenca",
            "position": "D",
            "jerseyNumber": "27",
            "height": 181,
            "userCount": 4193,
            "id": 1503832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1181520000,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Guillermo Fern\u00e1ndez",
            "firstName": "Guillermo Fern\u00e1ndez",
            "slug": "guillermo-fernandez",
            "shortName": "G. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 171,
            "userCount": 4356,
            "id": 1544614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1213747200,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Toni Fern\u00e1ndez",
            "slug": "toni-fernandez",
            "shortName": "T. Fern\u00e1ndez",
            "position": "F",
            "jerseyNumber": "42",
            "height": 186,
            "userCount": 3646,
            "id": 1590761,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1216080000,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 5,
            "totalLongBalls": 22,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 2,
            "errorLeadToAGoal": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.3,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": 0.422
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0137061
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 4,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 3,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "shotOffTarget": 1,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0163,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 8,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0081,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0390909
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.6,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0135,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0331044
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 5,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 4,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1778,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0194269
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0103138
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 63,
            "touches": 21,
            "rating": 6.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 30,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.212332
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 5,
            "duelLost": 9,
            "duelWon": 2,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "wasFouled": 1,
            "totalOffside": 3,
            "minutesPlayed": 80,
            "touches": 21,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00630198
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 27,
            "touches": 14,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Abdoulaye Keita",
            "firstName": "Abdoulaye Keita",
            "lastName": "",
            "slug": "abdoulaye-keita",
            "shortName": "A. Keita",
            "position": "F",
            "jerseyNumber": "36",
            "height": 186,
            "userCount": 29,
            "id": 1168094,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030838400,
            "proposedMarketValueRaw": {
                "value": 155000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "fouls": 2,
            "minutesPlayed": 27,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Borja Mayoral",
            "firstName": "",
            "lastName": "",
            "slug": "borja-mayoral",
            "shortName": "B. Mayoral",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2825,
            "id": 604954,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860198400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalOffside": 1,
            "minutesPlayed": 27,
            "touches": 5,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.3564,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 10,
            "touches": 5,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1194,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 3,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djordjije Medenica",
            "firstName": "Djordjije Medenica",
            "slug": "djordjije-medenica",
            "shortName": "D. Medenica",
            "position": "G",
            "height": 185,
            "userCount": 24,
            "id": 1645004,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1163721600
        },
        "teamId": 375393,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 61,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 106,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0287964
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 111,
            "accuratePass": 99,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 120,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0404,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0241921
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 107,
            "accuratePass": 96,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 114,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0437214
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2366,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.403355
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0654,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.330204
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 83,
            "accuratePass": 77,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 7.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0332,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.248513
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 57,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 3,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 3,
            "totalTackle": 4,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7.2,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1466,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.024219
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "totalOffside": 1,
            "minutesPlayed": 67,
            "touches": 49,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0200101
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "hitWoodwork": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 75,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.5142,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0958534
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00511063
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 23,
            "touches": 19,
            "rating": 7,
            "possessionLostCtrl": 4,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.221156
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 4,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.9128,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 15,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0577,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0105651
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 11,
            "totalLongBalls": 13,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.0907
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 12,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0112067
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 33,
            "touches": 27,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0107841
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0265,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.021012
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 60,
            "touches": 24,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0112865
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 78,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0137461
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 57,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0881527
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00697591
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00518056
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 30,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.4406,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.4131
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 80,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 108,
            "rating": 8.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2214,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0201427
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 101,
            "accuratePass": 99,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 109,
            "rating": 7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0117127
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 93,
            "accuratePass": 87,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 106,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0215114
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 66,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0193008
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 55,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 5,
            "fouls": 1,
            "minutesPlayed": 69,
            "touches": 72,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0410091
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 64,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0632,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0165061
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 78,
            "accuratePass": 69,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 94,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.216791
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 32,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelWon": 6,
            "totalContest": 3,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "minutesPlayed": 69,
            "touches": 52,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0862,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.165937
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 80,
            "touches": 48,
            "rating": 7.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.6301,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.018302
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 12,
            "duelWon": 5,
            "dispossessed": 3,
            "totalContest": 12,
            "wonContest": 4,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 61,
            "rating": 6.6,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.2377,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.266718
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 21,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0214672
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 12,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0834,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 10,
            "touches": 16,
            "rating": 6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "minutesPlayed": 10,
            "touches": 10,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 1,
            "touches": 3
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jacobo Naveros",
            "firstName": "",
            "lastName": "",
            "slug": "jacobo-naveros",
            "shortName": "J. Naveros",
            "position": "D",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 1820,
            "id": 1403348,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1104969600,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "David Jim\u00e9nez",
            "slug": "david-jimenez",
            "shortName": "D. Jim\u00e9nez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 175,
            "userCount": 1231,
            "id": 1142689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1079222400,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 9,
            "totalLongBalls": 22,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 24,
            "rating": 6.3,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -1.4595
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 8,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 6,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0294374
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 31,
            "rating": 6.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 7,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.176751
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0742,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.042875
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 60,
            "touches": 46,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0142,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0151244
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.6,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.3287,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0781444
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 19,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0246,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00860182
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0351929
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "interceptionWon": 2,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0192605
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 30,
            "touches": 24,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0545,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0421337
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalOffside": 1,
            "minutesPlayed": 30,
            "touches": 22,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1055,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0544928
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 19,
            "touches": 14,
            "rating": 7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 19,
            "touches": 7,
            "rating": 7.3,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.2769,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.106
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 74,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.317434
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 41,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0136,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 61,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0534,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0051029
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.4,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0419,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00732278
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 74,
            "touches": 28,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0104577
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 18,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 62,
            "touches": 41,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0424,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.117925
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 5,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.007,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.273513
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 34,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1241,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.72392
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 84,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.3528,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 28,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0174286
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 28,
            "touches": 13,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0377,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00995315
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 16,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0298,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 16,
            "touches": 2,
            "rating": 6.7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0235303
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 22,
            "accurateLongBalls": 13,
            "goalAssist": 0,
            "totalClearance": 2,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "goalsPrevented": 0.2608
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0216259
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 41,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 36,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.3,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0243,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00844382
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelWon": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0825224
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 6,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0589,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0185941
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 24,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 43,
            "rating": 6.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1729,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0270781
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0146682
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 16,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.6,
            "possessionLostCtrl": 22,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.133048
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0574,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 26,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0283,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.10666
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1134,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00512139
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "challengeLost": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0756933
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 13,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "goodHighClaim": 2,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.0721
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0490659
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 11,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0155,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 35,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 7,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 89,
            "touches": 73,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1381,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0122297
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 3,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0135438
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "minutesPlayed": 53,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2253,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.060529
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "minutesPlayed": 62,
            "touches": 25,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0404921
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 3,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 1.0866,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.462227
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 3,
            "dispossessed": 4,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1207,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.117443
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 3,
            "totalOffside": 2,
            "minutesPlayed": 61,
            "touches": 17,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.4544,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0544154
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 37,
            "touches": 39,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0139698
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 32,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0295,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0494858
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 3,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 28,
            "touches": 28,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1859,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0945739
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Collado",
            "firstName": "Alberto Collado",
            "slug": "collado-alberto",
            "shortName": "A. Collado",
            "position": "M",
            "jerseyNumber": "10",
            "userCount": 64,
            "id": 1402673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1113609600,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 14,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": -0.5237
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00983582
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00976556
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "totalClearance": 7,
            "outfielderBlock": 3,
            "ownGoals": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 3,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0054,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00596661
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 41,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 13,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 7,
            "errorLeadToAShot": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0262,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.128077
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 86,
            "touches": 54,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00714768
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 29,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2674,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 57,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.068416
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 4,
            "totalOffside": 1,
            "minutesPlayed": 73,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0848,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0971319
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "challengeLost": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0152986
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "minutesPlayed": 45,
            "touches": 26,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0385,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0127523
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 6,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 33,
            "touches": 11,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1105,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "minutesPlayed": 33,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.304058
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 17,
            "touches": 14,
            "rating": 5.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1477,
            "ratingVersions": {
                "original": 5.4,
                "alternative": null
            },
            "expectedAssists": 0.00786154
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 2,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Maroto",
            "firstName": "",
            "lastName": "",
            "slug": "mario-maroto",
            "shortName": "M. Maroto",
            "position": "M",
            "jerseyNumber": "34",
            "height": 176,
            "userCount": 23,
            "id": 1086415,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041379200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.6246
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 24,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.8,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0271,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0511385
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 40,
            "totalLongBalls": 15,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 68,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 51,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 9,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0082,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 36,
            "totalLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 5.9,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0777,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0246493
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 6,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 72,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0105961
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 51,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.028,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0203755
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 3,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 80,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0199,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0519276
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.409,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0619665
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 80,
            "touches": 29,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2508,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.156946
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 17,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 18,
            "touches": 22,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1071,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.118954
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 10,
            "touches": 5,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0552,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 13,
            "totalLongBalls": 21,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.6317
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 49,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 5,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.6,
            "possessionLostCtrl": 11,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.372461
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 49,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "goals": 1,
            "totalClearance": 6,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.3147,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.00845149
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 46,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 6,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2266,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.00933388
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.471157
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 44,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "minutesPlayed": 63,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0408,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0301911
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 4,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 41,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0453,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0126868
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0287923
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 3,
            "dispossessed": 5,
            "totalContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 27,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.066135
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 10,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 26,
            "expectedGoals": 0.067,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.193768
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 4,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 56,
            "touches": 25,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0485,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00519302
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 34,
            "touches": 13,
            "rating": 7.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.5737,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 16,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0671824
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 16,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0252491
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalClearance": 1,
            "interceptionWon": 2,
            "minutesPlayed": 27,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.020968
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 23,
            "totalLongBalls": 26,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 5,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "goalsPrevented": 0.2294
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0120524
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 3,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0394,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0338781
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0361,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 28,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 3,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.3,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0127108
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "wasFouled": 1,
            "minutesPlayed": 88,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0295,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00804839
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.4,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00882604
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 4,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0104008
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 5,
            "dispossessed": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 63,
            "touches": 25,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.8442,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00967128
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 5,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 9,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 88,
            "touches": 57,
            "rating": 8.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0525,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.434281
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 6,
            "duelLost": 6,
            "duelWon": 7,
            "dispossessed": 1,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 63,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00777043
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalOffside": 1,
            "minutesPlayed": 27,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1837,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "minutesPlayed": 2,
            "touches": 4,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "minutesPlayed": 2,
            "touches": 2
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": -0.0523
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 60,
            "touches": 50,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00739233
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 61,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 4,
            "duelLost": 11,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0146609
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 86,
            "accuratePass": 75,
            "totalLongBalls": 12,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0288298
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 41,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0204669
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 57,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0152,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0733131
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.025,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0112109
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 61,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0306,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 47,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 4,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1891,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.182474
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 3,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "penaltyConceded": 1,
            "fouls": 3,
            "minutesPlayed": 78,
            "touches": 45,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2023,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0197005
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "wasFouled": 1,
            "minutesPlayed": 60,
            "touches": 16,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0232,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0349385
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 30,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0142151
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalOffside": 1,
            "minutesPlayed": 30,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0867,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 29,
            "touches": 19,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0262908
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 3,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 12,
            "touches": 17,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.016,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.117146
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": -0.7452
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 71,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0262493
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 74,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00641076
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 67,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 2,
            "duelWon": 11,
            "totalClearance": 8,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00544026
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 39,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalTackle": 4,
            "minutesPlayed": 69,
            "touches": 60,
            "rating": 7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0335248
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 54,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 81,
            "touches": 73,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0883,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.143461
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 55,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1629,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0812631
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 69,
            "touches": 46,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.323396
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 46,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.6,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.0658,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.150963
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 34,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 63,
            "rating": 7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2545,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0303049
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "dispossessed": 2,
            "bigChanceMissed": 3,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 69,
            "touches": 23,
            "rating": 5.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3763,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            },
            "expectedAssists": 0.00678527
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 21,
            "touches": 27,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00518226
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 21,
            "touches": 20,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.127633
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 21,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 9,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0802,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0247611
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 2,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nobel Mendy",
            "slug": "mendy-nobel",
            "shortName": "N. Mendy",
            "position": "D",
            "jerseyNumber": "32",
            "height": 187,
            "userCount": 176,
            "id": 1458073,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Mateo Flores",
            "slug": "mateo-flores",
            "shortName": "M. Flores",
            "position": "M",
            "jerseyNumber": "46",
            "userCount": 53,
            "id": 1893864,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081296000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 46,
        "jerseyNumber": "46",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 10,
            "totalLongBalls": 12,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 5,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.0074000000000001
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00579546
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 41,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 6,
            "totalClearance": 6,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 3,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.108052
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0141028
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 40,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.4088,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0555665
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 76,
            "touches": 54,
            "rating": 6.3,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1807,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.156596
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 76,
            "touches": 33,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3373,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.010449
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 87,
            "touches": 43,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.05915
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "goalAssist": 1,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 10,
            "duelWon": 3,
            "dispossessed": 5,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 76,
            "touches": 41,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0179387
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 2,
            "fouls": 2,
            "minutesPlayed": 19,
            "touches": 14,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 10,
            "rating": 7.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0889,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.00554591
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 9,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wasFouled": 1,
            "minutesPlayed": 14,
            "touches": 15,
            "rating": 6,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0366334
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 14,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 9,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 24,
            "totalLongBalls": 24,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "totalKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.3013
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 3,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.234,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.143289
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 54,
            "totalLongBalls": 14,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalClearance": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.5,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0092502
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 49,
            "totalLongBalls": 15,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 51,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0138546
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 46,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 7,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1394,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0193259
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 46,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "interceptionWon": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 60,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0162924
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 2,
            "minutesPlayed": 85,
            "touches": 43,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0612,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.136515
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 9,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 85,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 1.2531,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0299344
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 65,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0932,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.172375
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 3,
            "duelLost": 9,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 73,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0123679
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 20,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "minutesPlayed": 25,
            "touches": 16,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0505,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00503547
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 17,
            "touches": 8,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0161,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 4,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Marco de las Sias",
            "slug": "marco-de-las-sias",
            "shortName": "M. d. l. S\u00edas",
            "position": "D",
            "jerseyNumber": "26",
            "userCount": 26,
            "id": 1893146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1135814400
        },
        "teamId": 43756,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pelayo Fern\u00e1ndez",
            "firstName": "",
            "lastName": "",
            "slug": "pelayo-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "27",
            "height": 193,
            "userCount": 220,
            "id": 1139724,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051574400,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.3719
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.6,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0336,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.213433
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 45,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0712,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00602591
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 60,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 8,
            "duelLost": 2,
            "duelWon": 9,
            "blockedScoringAttempt": 1,
            "totalClearance": 11,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0291,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00711645
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 45,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0128438
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 6,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0614,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0305,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0307028
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 41,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 7,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 6.9,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0338776
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 33,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 9,
            "challengeLost": 2,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.5,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0633,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0182595
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 6,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 85,
            "touches": 28,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0853,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.118057
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.041,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0583218
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 31,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "outfielderBlock": 1,
            "minutesPlayed": 45,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00600912
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.024297
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1124,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0207931
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javier Serrano",
            "slug": "javier-serrano",
            "shortName": "J. Serrano",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 293,
            "id": 1019320,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042675200,
            "proposedMarketValueRaw": {
                "value": 525000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a \u0633\u064a\u0631\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u064a\u0631\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 24326,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 14,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -1.4857
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 4,
            "wonContest": 3,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00621621
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 4,
            "totalTackle": 3,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 5.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 22,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0917,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 5.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0805,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            },
            "expectedAssists": 0.00948694
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 63,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1221,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0499832
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 6,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 57,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0184867
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2033,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0082263
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1541,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.207094
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.6204,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.37055
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "wasFouled": 4,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 23,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.8375,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.216761
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "shotOffTarget": 1,
            "totalOffside": 1,
            "minutesPlayed": 27,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0651,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 20,
            "touches": 16,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 12,
            "touches": 6,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0948126
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 2,
            "minutesPlayed": 12,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00764213
        },
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Marc-Andr\u00e9 ter Stegen",
            "firstName": "",
            "lastName": "",
            "slug": "marc-andre-ter-stegen",
            "shortName": "M.-A ter Stegen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 73119,
            "id": 88625,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 704592000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.1116
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 66,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 95,
            "rating": 7.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0434,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.266009
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 52,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00611101
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 70,
            "totalLongBalls": 7,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 5,
            "minutesPlayed": 81,
            "touches": 81,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0478399
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 54,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0416137
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 59,
            "touches": 46,
            "rating": 8.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0748,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.471804
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 46,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1848,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0157293
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 58,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 1,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 59,
            "touches": 70,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0341,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.283584
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 31,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "wasFouled": 4,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 8.7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1636,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.7,
                "alternative": null
            },
            "expectedAssists": 0.574901
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "hitWoodwork": 1,
            "goals": 2,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 2.3311,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0232855
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 5,
            "goals": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 8.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 1.3083,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.6,
                "alternative": null
            },
            "expectedAssists": 0.161919
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 7.1,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.2349
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 31,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 31,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0171761
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 31,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0200006
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 11,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Andr\u00e9s Cuenca",
            "firstName": "Andr\u00e9s Cuenca",
            "slug": "andres-cuenca",
            "shortName": "A. Cuenca",
            "position": "D",
            "jerseyNumber": "27",
            "height": 181,
            "userCount": 4193,
            "id": 1503832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1181520000,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Guillermo Fern\u00e1ndez",
            "firstName": "Guillermo Fern\u00e1ndez",
            "slug": "guillermo-fernandez",
            "shortName": "G. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 171,
            "userCount": 4356,
            "id": 1544614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1213747200,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ansu Fati",
            "slug": "ansu-fati",
            "shortName": "A. Fati",
            "position": "F",
            "jerseyNumber": "10",
            "height": 178,
            "userCount": 107703,
            "id": 962883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036022400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u0627\u062a\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Toni Fern\u00e1ndez",
            "slug": "toni-fernandez",
            "shortName": "T. Fern\u00e1ndez",
            "position": "F",
            "jerseyNumber": "42",
            "height": 186,
            "userCount": 3646,
            "id": 1590761,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1216080000,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "penaltyConceded": 1,
            "fouls": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 45,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": 0.4539
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0888275
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0578,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0287434
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "challengeLost": 1,
            "totalClearance": 12,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00613873
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 32,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 65,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0279,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0789737
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 37,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0186256
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 5,
            "wonContest": 3,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.36538
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1612,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0365688
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 31,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0342,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.126125
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 28,
            "rating": 8.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2382,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 2,
            "totalLongBalls": 11,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.4122
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "minutesPlayed": 25,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00640151
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "minutesPlayed": 15,
            "touches": 11,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00584853
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 7,
            "rating": 7.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1744,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -1.2195
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 105,
            "accuratePass": 96,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 9,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 120,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0202494
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 94,
            "accuratePass": 89,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "blockedScoringAttempt": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 103,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0903,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00688361
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 63,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 63,
            "touches": 78,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0122559
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 67,
            "touches": 61,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.017,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0200555
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 47,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.054086
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 63,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7,
            "possessionLostCtrl": 16,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.13261
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 5,
            "touches": 3,
            "possessionLostCtrl": 2
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "penaltyWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.4,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.7884,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.100237
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 68,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0329,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0575,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.241361
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 52,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 85,
            "touches": 82,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.126,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.118249
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 27,
            "touches": 35,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0175,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0105487
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.108414
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1061,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 22,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0755,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.1168
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 24,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7,
            "possessionLostCtrl": 29,
            "expectedGoals": 0.0758,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0347517
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 27,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0219,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.197402
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 39,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00679702
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 40,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.1,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.033,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0192052
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 32,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 14,
            "accurateCross": 3,
            "duelLost": 2,
            "duelWon": 9,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 4,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 7.6,
            "possessionLostCtrl": 29,
            "expectedGoals": 0.0226,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.233435
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0867,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0126044
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0232,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00798028
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 55,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.105,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.15117
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 11,
            "duelWon": 5,
            "dispossessed": 3,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 78,
            "touches": 23,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.119273
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 14,
            "duelWon": 7,
            "dispossessed": 8,
            "totalContest": 4,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 67,
            "touches": 48,
            "rating": 6.5,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.1908,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0203062
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 6.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1779,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0136026
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "minutesPlayed": 23,
            "touches": 11,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Borja Mayoral",
            "firstName": "",
            "lastName": "",
            "slug": "borja-mayoral",
            "shortName": "B. Mayoral",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2825,
            "id": 604954,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860198400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 13,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.8072,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 12,
            "touches": 14,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0647434
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Guillem Trilla",
            "firstName": "Guillem",
            "lastName": "Trilla",
            "slug": "guillem-trilla",
            "shortName": "G. Trilla",
            "position": "D",
            "jerseyNumber": "33",
            "userCount": 16,
            "id": 1936438,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 23000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "David Arguelles",
            "firstName": "",
            "lastName": "",
            "slug": "david-arguelles",
            "shortName": "D. Arguelles",
            "position": "D",
            "jerseyNumber": "34",
            "height": 170,
            "userCount": 14,
            "id": 1014085,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Abdoulaye Keita",
            "firstName": "Abdoulaye Keita",
            "lastName": "",
            "slug": "abdoulaye-keita",
            "shortName": "A. Keita",
            "position": "F",
            "jerseyNumber": "36",
            "height": 186,
            "userCount": 29,
            "id": 1168094,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030838400,
            "proposedMarketValueRaw": {
                "value": 155000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 7,
            "totalLongBalls": 26,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.4056
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 18,
            "totalLongBalls": 15,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 10,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 10,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.3855,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 17,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "totalClearance": 7,
            "outfielderBlock": 3,
            "interceptionWon": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 5,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 28,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 12,
            "duelWon": 11,
            "challengeLost": 3,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 4,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0105452
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 14,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 5,
            "duelWon": 6,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 43,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 13,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 85,
            "touches": 54,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0958,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0203507
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0922,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 10,
            "duelWon": 7,
            "challengeLost": 2,
            "totalContest": 3,
            "wonContest": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 74,
            "touches": 37,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.028348
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 9,
            "duelLost": 12,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 14,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0152,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0058,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0881839
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 28,
            "touches": 11,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00785476
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 16,
            "touches": 10,
            "rating": 6.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 4,
            "totalTackle": 1,
            "minutesPlayed": 16,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "ownGoals": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.8085
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 48,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 63,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.9865,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0473379
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 82,
            "accuratePass": 73,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00947357
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 81,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 7.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2371,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0182465
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2409,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.101413
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 85,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 4,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 2,
            "bigChanceCreated": 2,
            "blockedScoringAttempt": 2,
            "minutesPlayed": 90,
            "touches": 105,
            "rating": 8.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0749,
            "keyPass": 6,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.612784
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 73,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0095,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.130367
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 51,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 79,
            "rating": 8.5,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.132,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.166572
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 55,
            "touches": 57,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1043,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.292285
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "duelLost": 6,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 6,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 8.3,
            "possessionLostCtrl": 20,
            "expectedGoals": 1.913,
            "keyPass": 7,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.224814
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 36,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 6,
            "totalContest": 5,
            "wonContest": 4,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 84,
            "touches": 55,
            "rating": 8.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.6407,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.18282
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 5,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 3,
            "minutesPlayed": 35,
            "touches": 25,
            "rating": 8.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0794,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.487582
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 22,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "minutesPlayed": 31,
            "touches": 30,
            "rating": 7.2,
            "possessionLostCtrl": 1,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0423981
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 10,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "penaltyWon": 1,
            "minutesPlayed": 10,
            "touches": 10,
            "rating": 7.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0454,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0208022
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 11,
            "totalLongBalls": 26,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalClearance": 1,
            "errorLeadToAGoal": 1,
            "savedShotsFromInsideTheBox": 6,
            "saves": 10,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.8,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.00937621,
            "goalsPrevented": 0.5403
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 76,
            "touches": 32,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0136,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.027535
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 11,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 5,
            "outfielderBlock": 3,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 22,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0363,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0420286
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "penaltyConceded": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 5.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0215,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            },
            "expectedAssists": 0.0244577
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 11,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 76,
            "touches": 33,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1682,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00531352
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0558,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00841297
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "goalAssist": 0,
            "duelWon": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 81,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0448,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0179675
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "minutesPlayed": 45,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00532088
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 23,
            "touches": 19,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "errorLeadToAGoal": 1,
            "minutesPlayed": 14,
            "touches": 8,
            "rating": 4.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 4.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0611637
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 6.2,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0764278
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "totalLongBalls": 10,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.6595
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00668857
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.089,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00916427
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00564643
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 33,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 2,
            "totalCross": 7,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.6,
            "possessionLostCtrl": 21,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.213418
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0524,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0320679
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 9,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 32,
            "rating": 6.3,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1243,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0119191
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "minutesPlayed": 88,
            "touches": 23,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0321,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0971919
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 20,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1372,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0906498
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "interceptionWon": 2,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "totalContest": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 8,
            "touches": 7,
            "rating": 6.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "minutesPlayed": 8,
            "touches": 1,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Fran P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "fran-perez",
            "shortName": "F. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 176,
            "userCount": 366,
            "id": 966637,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031529600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Warren Madrigal",
            "firstName": "Warren Madrigal",
            "slug": "madrigal-warren",
            "shortName": "W. Madrigal",
            "position": "F",
            "jerseyNumber": "42",
            "height": 185,
            "userCount": 663,
            "id": 1102593,
            "country": {
                "alpha2": "CR",
                "alpha3": "CRI",
                "name": "Costa Rica",
                "slug": "costa-rica"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090627200,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "goodHighClaim": 4,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -1.6878
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 81,
            "accuratePass": 72,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 108,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0721,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0213302
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 85,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 98,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0104209
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 103,
            "accuratePass": 88,
            "totalLongBalls": 17,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 113,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.086,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00927814
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 71,
            "totalLongBalls": 13,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0947623
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 5,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.336033
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 79,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0129364
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 31,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 5,
            "totalTackle": 5,
            "fouls": 3,
            "minutesPlayed": 62,
            "touches": 46,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00748144
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 6,
            "totalContest": 5,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 79,
            "touches": 61,
            "rating": 7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0484,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0514454
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 14,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0755,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00922124
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 62,
            "touches": 27,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00829606
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0679,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 28,
            "touches": 16,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0559,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0136272
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 11,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0800695
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 22,
            "totalLongBalls": 14,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "lastManTackle": 1,
            "totalTackle": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 5,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.288
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0562514
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 8,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 5,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0108459
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 70,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0139523
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 13,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00547018
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 38,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.135285
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 42,
            "rating": 7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.055,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.19977
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0426,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0955426
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 3,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 64,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0967,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0193352
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 5,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "penaltyWon": 1,
            "minutesPlayed": 76,
            "touches": 25,
            "rating": 7.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.9464,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.00526836
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0620031
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1224,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 14,
            "touches": 11,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1626,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.17956
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 2,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 1,
            "touches": 3,
            "expectedGoals": 0.5394
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 30,
            "totalLongBalls": 19,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.1383
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0112584
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 47,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 39,
            "rating": 6.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00934822
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 49,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 4,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.081,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00836689
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.136528
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 30,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1032,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0695919
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 46,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 74,
            "touches": 68,
            "rating": 7.5,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0315,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.172114
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 50,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0954,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.216034
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 5,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 74,
            "touches": 49,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2089,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.223195
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 12,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 3,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 4,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.2986,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00577494
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Daley Sinkgraven",
            "slug": "daley-sinkgraven",
            "shortName": "D. Sinkgraven",
            "position": "D",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 274,
            "id": 377206,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 47,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0127822
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0739078
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0289,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0573563
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Adnan Januzaj",
            "slug": "adnan-januzaj",
            "shortName": "A. Januzaj",
            "position": "M",
            "jerseyNumber": "24",
            "height": 186,
            "userCount": 1624,
            "id": 328145,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791942400,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 16,
            "touches": 14,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 16,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Peji\u00f1o",
            "slug": "pejino",
            "shortName": "Peji\u00f1o",
            "position": "M",
            "jerseyNumber": "7",
            "height": 177,
            "userCount": 94,
            "id": 925220,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 838598400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 17,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.5209
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 3,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0148,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.295378
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Abdulay Juma Bah",
            "slug": "abdulay-juma-bah",
            "shortName": "A. J. Bah",
            "position": "D",
            "jerseyNumber": "35",
            "height": 195,
            "userCount": 566,
            "id": 1606792,
            "country": {
                "alpha2": "SL",
                "alpha3": "SLE",
                "name": "Sierra Leone",
                "slug": "sierra-leone"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1144713600,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 3,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "minutesPlayed": 78,
            "touches": 30,
            "rating": 7.5,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0211099
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.019,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0352261
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 8,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0217634
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 2,
            "minutesPlayed": 61,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0612,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0193722
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0134,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 78,
            "touches": 35,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3358,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0798641
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 5,
            "aerialWon": 11,
            "duelLost": 14,
            "duelWon": 17,
            "dispossessed": 4,
            "totalContest": 3,
            "wonContest": 3,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.3,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2343,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0115734
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 76,
            "touches": 28,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.011,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0085,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00603375
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 29,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.22416
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.319,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Maroto",
            "firstName": "",
            "lastName": "",
            "slug": "mario-maroto",
            "shortName": "M. Maroto",
            "position": "M",
            "jerseyNumber": "34",
            "height": 176,
            "userCount": 23,
            "id": 1086415,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041379200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 20,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.243
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 40,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0218,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.252739
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 75,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 9,
            "aerialWon": 3,
            "duelLost": 12,
            "duelWon": 6,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 95,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0216889
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 76,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 91,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0130317
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 36,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.3,
            "possessionLostCtrl": 25,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.189859
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 61,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.133,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0107498
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 59,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 10,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 90,
            "rating": 8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2775,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.024611
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 45,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0143,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0328313
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 11,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 7,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 21,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.123002
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 61,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.4388,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.1181
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 29,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0669,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.097703
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 2,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 29,
            "touches": 10,
            "rating": 5.8,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.4172,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            },
            "expectedAssists": 0.0487752
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 9,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1014,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Urko Gonz\u00e1lez",
            "slug": "urko-gonzalez",
            "shortName": "U. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 131,
            "id": 1064009,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985046400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 16,
            "totalLongBalls": 23,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 2,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0140971,
            "goalsPrevented": 0.4895
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 7,
            "totalLongBalls": 5,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 8,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.2,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.0308,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0181187
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 17,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 5,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.010428
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 28,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.033,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.157055
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 27,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00942437
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1341,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.157596
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 71,
            "touches": 26,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2819,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0850455
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 77,
            "touches": 35,
            "rating": 7.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.5143,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0084836
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 9,
            "aerialWon": 4,
            "duelLost": 13,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 76,
            "touches": 26,
            "rating": 6.7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1387,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0808479
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 7,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 19,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00667166
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 14,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0965,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00540203
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalClearance": 2,
            "interceptionWon": 1,
            "minutesPlayed": 1,
            "touches": 3
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -1.2339
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 49,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 6.4,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0116194
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 56,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 7,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 70,
            "touches": 68,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 100,
            "accuratePass": 85,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 10,
            "duelLost": 5,
            "duelWon": 13,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 111,
            "rating": 7.1,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00626282
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 4,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 58,
            "rating": 6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0242,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0173202
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "totalContest": 1,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 32,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.012041
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 66,
            "touches": 47,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0181819
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 4,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.2286,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.109451
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 7,
            "wonContest": 5,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.8,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.2145,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.256413
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 14,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0245,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "wasFouled": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0213,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0211317
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 1,
            "dispossessed": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 76,
            "touches": 28,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00725102
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 1,
            "duelLost": 3,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "minutesPlayed": 24,
            "touches": 14,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.011,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0117137
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "fouls": 2,
            "minutesPlayed": 20,
            "touches": 30,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00598618
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 20,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00849111
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Suso",
            "firstName": "",
            "lastName": "",
            "slug": "suso",
            "shortName": "Suso",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1692,
            "id": 96370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 753667200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Collado",
            "firstName": "Alberto Collado",
            "slug": "collado-alberto",
            "shortName": "A. Collado",
            "position": "M",
            "jerseyNumber": "10",
            "userCount": 64,
            "id": 1402673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1113609600,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.8456
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 47,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 8.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.071,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0693101
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 49,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0121674
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 40,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.1,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0231,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00602148
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 37,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 4,
            "lastManTackle": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7.1,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0393386
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 43,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.186135
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 25,
            "totalLongBalls": 9,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 18,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0463236
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 57,
            "touches": 44,
            "rating": 6.5,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0295,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0575612
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0553,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0140563
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 87,
            "touches": 40,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1489,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0144675
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 2,
            "dispossessed": 2,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 1.1807,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0152763
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0685,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0484901
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 33,
            "touches": 27,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0251,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.198895
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 35,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0764,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0086054
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "James Rodr\u00edguez",
            "slug": "james-rodriguez",
            "shortName": "James Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 61547,
            "id": 107414,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679276800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 11,
            "touches": 4,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0373415
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergi Guardiola",
            "slug": "sergi-guardiola",
            "shortName": "S. Guardiola",
            "position": "F",
            "jerseyNumber": "12",
            "height": 185,
            "userCount": 275,
            "id": 141945,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 675475200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "wasFouled": 2,
            "minutesPlayed": 11,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 17,
            "totalLongBalls": 35,
            "accurateLongBalls": 14,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.4,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00949576,
            "goalsPrevented": -1.7293
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.014239
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 9,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 10,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.101,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 8,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 6,
            "fouls": 1,
            "minutesPlayed": 76,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0218152
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 19,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 12,
            "duelLost": 7,
            "duelWon": 17,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.6,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0221423
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 66,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0335584
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "totalContest": 1,
            "totalClearance": 4,
            "fouls": 1,
            "minutesPlayed": 76,
            "touches": 41,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0253663
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 7,
            "dispossessed": 4,
            "totalContest": 5,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 30,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0262,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 84,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1391,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.254782
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "minutesPlayed": 24,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0676,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 14,
            "touches": 13,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.106589
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "minutesPlayed": 14,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 7.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.0721
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 48,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 4,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0162,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.364296
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 60,
            "totalLongBalls": 10,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1829,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00511169
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 66,
            "totalLongBalls": 10,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0548,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0108557
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 5,
            "challengeLost": 1,
            "totalTackle": 3,
            "minutesPlayed": 77,
            "touches": 55,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.188548
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 67,
            "touches": 51,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3746,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.134208
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "wasFouled": 2,
            "minutesPlayed": 61,
            "touches": 56,
            "rating": 7.4,
            "possessionLostCtrl": 15,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.52286
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 55,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "challengeLost": 2,
            "totalClearance": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.384311
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.6633,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.00991574
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 12,
            "accurateCross": 4,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 76,
            "touches": 62,
            "rating": 8.1,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.6604,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.386327
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 28,
            "rating": 6.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.7673,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0106613
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0103743
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 29,
            "touches": 10,
            "rating": 7.1,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.5196,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 23,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 14,
            "touches": 6,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 13,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javier Serrano",
            "slug": "javier-serrano",
            "shortName": "J. Serrano",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 293,
            "id": 1019320,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042675200,
            "proposedMarketValueRaw": {
                "value": 525000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0641\u064a \u0633\u064a\u0631\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u064a\u0631\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 24326,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 16,
            "totalLongBalls": 17,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": 0.0947
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 25,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 2,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 46,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00531723
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 46,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0114319
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 48,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0118878
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 43,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0226,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.043764
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 1,
            "totalContest": 6,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0270054
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 23,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0050191
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 51,
            "totalLongBalls": 11,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "duelLost": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0519975
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 70,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00885626
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 25,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 48,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0451,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0171843
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 79,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00514721
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 43,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0269027
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 20,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0508,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00898431
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 19,
            "touches": 12,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Germ\u00e1n Valera",
            "slug": "german-valera",
            "shortName": "V. Germain",
            "position": "M",
            "jerseyNumber": "30",
            "height": 170,
            "userCount": 263,
            "id": 962710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016236800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "minutesPlayed": 11,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0274,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00723069
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00567153
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Maximiliano Caufriez",
            "firstName": "",
            "lastName": "",
            "slug": "maximiliano-caufriez",
            "shortName": "M. Caufriez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 189,
            "userCount": 176,
            "id": 800349,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856051200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Warren Madrigal",
            "firstName": "Warren Madrigal",
            "slug": "madrigal-warren",
            "shortName": "W. Madrigal",
            "position": "F",
            "jerseyNumber": "42",
            "height": 185,
            "userCount": 663,
            "id": 1102593,
            "country": {
                "alpha2": "CR",
                "alpha3": "CRI",
                "name": "Costa Rica",
                "slug": "costa-rica"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090627200,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 42,
        "jerseyNumber": "42",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 12,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 4,
            "goodHighClaim": 1,
            "saves": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -0.312
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 2,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.3,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0231064
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 43,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 53,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 5,
            "totalClearance": 3,
            "totalTackle": 2,
            "minutesPlayed": 77,
            "touches": 67,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 84,
            "accuratePass": 70,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 106,
            "rating": 6.8,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0294587
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 5,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0811,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0843255
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 10,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 29,
            "rating": 6.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0117431
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 107,
            "accuratePass": 89,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 3,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 5,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 121,
            "rating": 6.8,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.8113,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.168158
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.3,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.167,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.289179
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "totalContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 24,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0420632
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 54,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1879,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0427685
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 55,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0736,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0165178
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "F\u00e1bio Silva",
            "slug": "fabio-silva",
            "shortName": "F. Silva",
            "position": "F",
            "jerseyNumber": "37",
            "height": 185,
            "userCount": 3709,
            "id": 954076,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027036800,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 14,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0469,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0117634
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 2,
            "blockedScoringAttempt": 2,
            "minutesPlayed": 13,
            "touches": 19,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0775,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00625228
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.012635
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "D\u00e1rio Essugo",
            "slug": "dario-essugo",
            "shortName": "D. Essugo",
            "position": "M",
            "jerseyNumber": "29",
            "height": 178,
            "userCount": 1578,
            "id": 1110006,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110758400,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 17,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": -0.7138
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 51,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00747258
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "totalClearance": 9,
            "outfielderBlock": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00686956
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 23,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 5,
            "clearanceOffLine": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.8723,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 33,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 3,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.1,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0769,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00777298
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 56,
            "touches": 32,
            "rating": 6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00520755
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1igo Ruiz de Galarreta",
            "slug": "inigo-ruiz-de-galarreta",
            "shortName": "I. R. d. Galarreta",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 654,
            "id": 96365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 744595200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 59,
            "touches": 33,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00877628
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 3,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.7,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.5394,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0971797
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 71,
            "touches": 38,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.4436,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0328926
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 7,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 44,
            "rating": 7.6,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1824,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0674307
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 32,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0341,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.013673
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 31,
            "touches": 13,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "minutesPlayed": 31,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 11,
            "rating": 7,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.365208
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "minutesPlayed": 19,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 8,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 36,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 5,
            "saves": 5,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": -0.5164
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 85,
            "touches": 51,
            "rating": 6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0203,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00637654
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 49,
            "totalLongBalls": 9,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "duelLost": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalClearance": 4,
            "interceptionWon": 2,
            "errorLeadToAGoal": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 5.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 9,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00534056
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.8,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0295,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.164473
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 43,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0130949
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 11,
            "duelWon": 5,
            "challengeLost": 4,
            "dispossessed": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.3,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0571434
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 54,
            "touches": 32,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.5484,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0201277
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 69,
            "touches": 19,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0247,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0107171
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "totalTackle": 1,
            "totalOffside": 2,
            "minutesPlayed": 55,
            "touches": 15,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0965072
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalOffside": 1,
            "minutesPlayed": 69,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0943,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0087571
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 36,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0590379
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 35,
            "touches": 8,
            "rating": 7.1,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.336288
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 21,
            "touches": 7,
            "rating": 6.7,
            "expectedGoals": 0.0631,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalOffside": 1,
            "minutesPlayed": 21,
            "touches": 5,
            "rating": 7.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.5126,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "minutesPlayed": 12,
            "touches": 7,
            "rating": 6.7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.105087
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ra\u00fal Mart\u00ednez",
            "firstName": "Ra\u00fal Mart\u00ednez",
            "slug": "raul-martinez",
            "shortName": "R. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "37",
            "userCount": 29,
            "id": 1937396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014422400
        },
        "teamId": 368693,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Marc-Andr\u00e9 ter Stegen",
            "firstName": "",
            "lastName": "",
            "slug": "marc-andre-ter-stegen",
            "shortName": "M.-A ter Stegen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 73119,
            "id": 88625,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 704592000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 38,
            "totalLongBalls": 11,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.2612
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 45,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0314,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0694954
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 61,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00577764
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 74,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0163,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0243849
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 10,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "totalTackle": 2,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0896,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.019869
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 47,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0192,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.307471
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 69,
            "touches": 48,
            "rating": 7.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2095,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0231208
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 6,
            "duelWon": 10,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 4,
            "goals": 2,
            "totalTackle": 6,
            "wasFouled": 3,
            "minutesPlayed": 89,
            "touches": 60,
            "rating": 9.5,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.7123,
            "keyPass": 1,
            "ratingVersions": {
                "original": 9.5,
                "alternative": null
            },
            "expectedAssists": 0.116912
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 39,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0112,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.076064
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.6,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0115,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.278464
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "goalAssist": 1,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "wasFouled": 1,
            "minutesPlayed": 69,
            "touches": 24,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.3031,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0228333
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 29,
            "touches": 14,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0150733
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 29,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0218,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.4535,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 10,
            "rating": 5.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 5
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Diego Kochen",
            "firstName": "Diego Kochen",
            "lastName": "",
            "slug": "kochen-diego",
            "shortName": "D. Kochen",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 2394,
            "id": 1402907,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1142726400,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Guillermo Fern\u00e1ndez",
            "firstName": "Guillermo Fern\u00e1ndez",
            "slug": "guillermo-fernandez",
            "shortName": "G. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 171,
            "userCount": 4356,
            "id": 1544614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1213747200,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 3,
            "wasFouled": 2,
            "goodHighClaim": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.4678
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 50,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 69,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0271977
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 59,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 51,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 75,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0371,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00716171
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.142672
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalTackle": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 69,
            "touches": 57,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.122935
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 4,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0164167
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 43,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 8,
            "wonContest": 4,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2487,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.170681
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 28,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 8.1,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1231,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.259864
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 69,
            "touches": 21,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.5988,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0077848
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 76,
            "touches": 25,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0548,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0274987
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 21,
            "touches": 22,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0794415
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 4,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 12,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.8053,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marcos Alonso",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-alonso",
            "shortName": "M. Alonso",
            "position": "D",
            "jerseyNumber": "20",
            "height": 188,
            "userCount": 12365,
            "id": 69408,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 662342400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 15,
            "touches": 7,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "minutesPlayed": 14,
            "touches": 8,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0114118
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 8,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "C\u00e9sar Fern\u00e1ndez",
            "firstName": "Cesar Fernandez",
            "slug": "cesar-fernandez",
            "shortName": "C. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 181,
            "userCount": 14,
            "id": 1191206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075248000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Franco Cervi",
            "firstName": "",
            "lastName": "",
            "slug": "franco-cervi",
            "shortName": "F. Cervi",
            "position": "M",
            "jerseyNumber": "11",
            "height": 165,
            "userCount": 926,
            "id": 557008,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769910400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Tadeo Allende",
            "slug": "tadeo-allende",
            "shortName": "T. Allende",
            "position": "F",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 414,
            "id": 1108451,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 919468800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 37,
            "totalLongBalls": 20,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00839748,
            "goalsPrevented": -0.1876
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0131116
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 55,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "minutesPlayed": 64,
            "touches": 62,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 56,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 3,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 33,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.034,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.125217
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 5.9,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.165088
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 81,
            "touches": 49,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0249,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.30497
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 41,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0226971
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0500288
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 19,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2219,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1228,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00867374
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1095,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.161244
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 14,
            "rating": 6.3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kenedy",
            "firstName": "",
            "lastName": "",
            "slug": "kenedy",
            "shortName": "Kenedy",
            "position": "F",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 1310,
            "id": 801391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 823737600,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "C\u00e9sar de la Hoz",
            "firstName": "",
            "lastName": "",
            "slug": "cesar-de-la-hoz",
            "shortName": "C. de la Hoz",
            "position": "M",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 49,
            "id": 233328,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701913600,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 24,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.2016
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 39,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0081,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.149631
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 39,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "outfielderBlock": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.289828
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Nayef Aguerd",
            "firstName": "",
            "lastName": "",
            "slug": "nayef-aguerd",
            "shortName": "N. Aguerd",
            "position": "D",
            "jerseyNumber": "21",
            "height": 188,
            "userCount": 21014,
            "id": 877102,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 828144000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 75,
            "touches": 43,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.3417,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 45,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00521703
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 35,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0887,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.334489
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.3541,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0529027
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 66,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 2,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0735779
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 3,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0388,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.193111
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1847,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00556476
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 8,
            "dispossessed": 1,
            "totalContest": 2,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 22,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.051,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.052208
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "interceptionWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 27,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0146405
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "minutesPlayed": 27,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 14,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 15,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00665576
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00524735
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "\u00c1lvaro Odriozola",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-odriozola",
            "shortName": "\u00c1. Odriozola",
            "position": "D",
            "jerseyNumber": "2",
            "height": 175,
            "userCount": 2534,
            "id": 353250,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818899200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.8972
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 47,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0889,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0279347
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 53,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1048,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.00814617
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 47,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0544,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00579675
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 41,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 1,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.028384
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 59,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0208,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0410562
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 56,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1176,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.324969
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 24,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0249874
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0859,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0575455
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 4,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 1.0044,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.019686
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 7,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 42,
            "rating": 7.2,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.9029,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0953642
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 66,
            "touches": 27,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0455188
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 12,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 1,
            "touches": 3,
            "expectedAssists": 0.00792102
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Sergio Mestre",
            "firstName": "Sergio Mestre",
            "slug": "sergio-mestre",
            "shortName": "S. Mestre",
            "position": "G",
            "jerseyNumber": "34",
            "height": 193,
            "userCount": 1932,
            "id": 1403015,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108252800,
            "proposedMarketValueRaw": {
                "value": 48000,
                "currency": "EUR"
            }
        },
        "teamId": 490780,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Chema Andr\u00e9s",
            "firstName": "Chema Andr\u00e9s",
            "slug": "chema-andres",
            "shortName": "C. Andr\u00e9s",
            "position": "M",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 2044,
            "id": 1464641,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 18,
            "totalLongBalls": 35,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.5,
            "possessionLostCtrl": 29,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0154654,
            "goalsPrevented": 0.4158
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.014,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.00996061
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 6,
            "duelLost": 5,
            "duelWon": 11,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 3,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 64,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 67,
            "touches": 47,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.5079,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0282696
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 47,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0110532
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 44,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 52,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0230033
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 3,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1311,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0697477
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 19,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 11,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 76,
            "touches": 36,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0740764
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 13,
            "duelWon": 5,
            "dispossessed": 4,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 89,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.3134,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.026335
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 9,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 5,
            "totalContest": 7,
            "wonContest": 5,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 55,
            "rating": 6.7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0220204
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 19,
            "touches": 5,
            "rating": 5.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 5.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 23,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.4118,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0205439
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 2,
            "minutesPlayed": 14,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0204711
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 10,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 10,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 10,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0297,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Collado",
            "firstName": "Alberto Collado",
            "slug": "collado-alberto",
            "shortName": "A. Collado",
            "position": "M",
            "jerseyNumber": "10",
            "userCount": 64,
            "id": 1402673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1113609600,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pedro Ortiz",
            "firstName": "",
            "lastName": "",
            "slug": "ortiz-pedro",
            "shortName": "P. Ortiz",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 84,
            "id": 964981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966643200,
            "proposedMarketValueRaw": {
                "value": 380000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 11,
            "totalLongBalls": 14,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.131
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 18,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 7,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0322,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0603509
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0563,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.006381
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 20,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 4,
            "interceptionWon": 3,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 41,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "wasFouled": 3,
            "minutesPlayed": 84,
            "touches": 63,
            "rating": 7.2,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0289,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0186487
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 3,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 34,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0977,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.130236
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0292,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0580201
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00588976
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 14,
            "duelWon": 4,
            "dispossessed": 7,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 84,
            "touches": 32,
            "rating": 6.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.4778,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0185606
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 7,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1322,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.113713
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Gorka Rivera",
            "firstName": "",
            "lastName": "",
            "slug": "gorka-rivera",
            "shortName": "G. Rivera",
            "position": "D",
            "jerseyNumber": "30",
            "userCount": 11,
            "id": 1390614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091318400,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0641\u064a\u0631\u0627 \u060c \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u062c\u0648\u0631\u0643\u0627"
                }
            }
        },
        "teamId": 43753,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 4,
            "shotOffTarget": 1,
            "minutesPlayed": 19,
            "touches": 9,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0295,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 19,
            "touches": 2,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalTackle": 1,
            "minutesPlayed": 21,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1276,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.042469
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 4,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "John Patrick",
            "slug": "john-joe-patrick-finn",
            "shortName": "J. Patrick",
            "position": "M",
            "jerseyNumber": "31",
            "height": 192,
            "userCount": 111,
            "id": 1100831,
            "country": {
                "alpha2": "IE",
                "alpha3": "IRL",
                "name": "Ireland",
                "slug": "ireland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064361600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 9,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Guillem Trilla",
            "firstName": "Guillem",
            "lastName": "Trilla",
            "slug": "guillem-trilla",
            "shortName": "G. Trilla",
            "position": "D",
            "jerseyNumber": "33",
            "userCount": 16,
            "id": 1936438,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 23000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 17,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "errorLeadToAGoal": 1,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 1.0733
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 22,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 11,
            "challengeLost": 1,
            "totalClearance": 8,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 46,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 6,
            "totalClearance": 12,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 32,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 10,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00971004
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0372,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0102379
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 2,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 58,
            "touches": 39,
            "rating": 8.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.059,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.84906
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 7,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 5,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 58,
            "touches": 28,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0234,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00867429
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 20,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 2,
            "onTargetScoringAttempt": 3,
            "goals": 3,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 8.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 1.3303,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.9,
                "alternative": null
            },
            "expectedAssists": 0.0146474
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 57,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1042,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "penaltyWon": 1,
            "minutesPlayed": 33,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0509,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 6,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 18,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.138867
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 16,
            "touches": 2,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 5,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 13,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -0.2094
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0939,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.075973
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 30,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0492,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 48,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0103167
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.3,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.108935
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "minutesPlayed": 64,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0201503
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "minutesPlayed": 64,
            "touches": 39,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0467698
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 4,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.2,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1102,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.449995
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "duelLost": 7,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.18,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0228922
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 78,
            "touches": 43,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.7225,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.115569
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 2,
            "dispossessed": 3,
            "onTargetScoringAttempt": 1,
            "fouls": 3,
            "minutesPlayed": 64,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0285,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0511959
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "minutesPlayed": 26,
            "touches": 31,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0832,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0721029
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 29,
            "rating": 7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1268,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0595541
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joan Jord\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "joan-jordan",
            "shortName": "J. Jord\u00e1n",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 725,
            "id": 591750,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 1,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 26,
            "touches": 44,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0392,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.134723
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "fouls": 2,
            "minutesPlayed": 26,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.4372,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.492038
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "wasFouled": 2,
            "minutesPlayed": 12,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.044,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 26,
            "totalLongBalls": 19,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": 0.0267
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 23,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 81,
            "touches": 60,
            "rating": 6.9,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.154987
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.07,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 49,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0122,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00706598
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 24,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 69,
            "touches": 48,
            "rating": 6.2,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0388861
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 44,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.02434
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 56,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1124,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0383794
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 31,
            "rating": 7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.022,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 3,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 62,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0913973
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 45,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0268,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 7,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0166,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00997566
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Valery Fern\u00e1ndez",
            "slug": "valery-fernandez",
            "shortName": "V. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 455,
            "id": 962378,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 943315200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "totalContest": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 17,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.013821
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 15,
            "goalAssist": 0,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 28,
            "touches": 19,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0874,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0946109
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "minutesPlayed": 27,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0313032
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00685269
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 10,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Chiquinho",
            "slug": "chiquinho",
            "shortName": "Chiquinho",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 487,
            "id": 1015826,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949708800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": -0.6624
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 31,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0645981
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 34,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 1,
            "duelWon": 5,
            "blockedScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 2,
            "ownGoals": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.083,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00702503
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 41,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 10,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1696,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0055385
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 63,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.037,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.136775
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0736,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00525943
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 57,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0459,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.467567
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 34,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialWon": 4,
            "duelWon": 4,
            "minutesPlayed": 74,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.190122
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 41,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 8.1,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.2397,
            "keyPass": 6,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.603205
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.6879,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.285181
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 8,
            "duelWon": 6,
            "dispossessed": 2,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.3458,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0104373
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 27,
            "touches": 16,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0827,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.5325
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0720631
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "minutesPlayed": 13,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00555976
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "minutesPlayed": 12,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0254268
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Denis Su\u00e1rez",
            "slug": "denis-suarez",
            "shortName": "D. Su\u00e1rez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 1355,
            "id": 138383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 757814400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 30,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0271,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00794892
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 71,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 6,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0071601
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 73,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0363,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00906451
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 67,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 102,
            "rating": 7.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0441,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0333682
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 70,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 4,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0362,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0494389
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "William Carvalho",
            "slug": "william-carvalho",
            "shortName": "W. Carvalho",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 1722,
            "id": 137978,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648, \u0648\u064a\u0644\u064a\u0627\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 26,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 61,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 13,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0494107
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 45,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 74,
            "rating": 7.4,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0173,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0802874
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 38,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 4,
            "goals": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.7,
            "possessionLostCtrl": 25,
            "expectedGoals": 1.2396,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0415021
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0387,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 48,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 64,
            "touches": 68,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.068,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0271306
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 5,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 29,
            "touches": 37,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0327387
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 28,
            "touches": 18,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.66527
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 2,
            "minutesPlayed": 28,
            "touches": 8,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.6981,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 11,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00839436
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Lucas Alcazar",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-alcazar",
            "shortName": "L. Alc\u00e1zar",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 71,
            "id": 1049200,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026345600,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Jes\u00fas Rodriguez",
            "slug": "jesus-rodriguez",
            "shortName": "J. Rodriguez",
            "position": "F",
            "jerseyNumber": "36",
            "height": 185,
            "userCount": 180,
            "id": 1800245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1132531200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 12,
            "totalLongBalls": 29,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.3714
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 2,
            "lastManTackle": 1,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 6,
            "totalClearance": 2,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 8,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.1,
            "possessionLostCtrl": 18,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0665739
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0686,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00666111
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 66,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0129,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 61,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00878308
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 28,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "S\u00e9bastien Haller",
            "firstName": "",
            "lastName": "",
            "slug": "sebastien-haller",
            "shortName": "S. Haller",
            "position": "F",
            "jerseyNumber": "18",
            "height": 190,
            "userCount": 26680,
            "id": 149731,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772243200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 7,
            "duelLost": 8,
            "duelWon": 8,
            "totalClearance": 4,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0073316
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Matija Nastasi\u0107",
            "slug": "matija-nastasic",
            "shortName": "M. Nastasi\u0107",
            "position": "D",
            "jerseyNumber": "22",
            "height": 188,
            "userCount": 632,
            "id": 98440,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733276800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0143,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "minutesPlayed": 29,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0115118
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00888311
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 30,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.025
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 52,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0273054
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 57,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 4,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1978,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0223584
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 67,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0523,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0162151
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 40,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 65,
            "touches": 54,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0249512
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 56,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 8.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0631,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.495096
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 66,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 10,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 2,
            "interceptionWon": 4,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 90,
            "rating": 8.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0786,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0445303
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 44,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 65,
            "touches": 64,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.118956
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 35,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 4,
            "aerialLost": 1,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 63,
            "rating": 8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0473,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.422235
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 22,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 5,
            "goals": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 84,
            "touches": 49,
            "rating": 8.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 1.6972,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.8,
                "alternative": null
            },
            "expectedAssists": 0.041768
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 2,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "wasFouled": 5,
            "fouls": 2,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.6,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0856,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.262097
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "totalClearance": 1,
            "minutesPlayed": 25,
            "touches": 15,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00774716
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 25,
            "touches": 23,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.473621
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 13,
            "touches": 30,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0408654
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 8,
            "touches": 3,
            "rating": 6.6,
            "expectedGoals": 0.231,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jacobo Naveros",
            "firstName": "",
            "lastName": "",
            "slug": "jacobo-naveros",
            "shortName": "J. Naveros",
            "position": "D",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 1820,
            "id": 1403348,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1104969600,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 13,
            "totalLongBalls": 12,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 5,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.1124
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 36,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.177609
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 5,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 3,
            "duelWon": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 36,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 6,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0527,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.221714
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0496,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.213871
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "William Carvalho",
            "slug": "william-carvalho",
            "shortName": "W. Carvalho",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 1722,
            "id": 137978,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648, \u0648\u064a\u0644\u064a\u0627\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 48,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.02593
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Rodri S\u00e1nchez",
            "slug": "rodri-sanchez",
            "shortName": "R. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 175,
            "userCount": 652,
            "id": 1031421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958435200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 44444,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 36,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 72,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0253,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.123534
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 83,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0614,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.035392
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 11,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 3,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 1,
            "minutesPlayed": 83,
            "touches": 50,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2596,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0244742
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.029,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0207484
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 23,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 33,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0894,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0141629
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0500186
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Lucas Alcazar",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-alcazar",
            "shortName": "L. Alc\u00e1zar",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 71,
            "id": 1049200,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026345600,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "minutesPlayed": 90,
            "touches": 15,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 23,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.2,
            "possessionLostCtrl": 29,
            "expectedGoals": 0.019,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.438892
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00798958
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 36,
            "totalLongBalls": 18,
            "accurateLongBalls": 11,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0294,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0369044
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 27,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 1,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.3,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0109159
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 35,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 9,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.4,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0183,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0846605
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 22,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0253,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0809162
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 67,
            "touches": 35,
            "rating": 6.4,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1649,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00674365
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 9,
            "totalContest": 4,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 89,
            "touches": 40,
            "rating": 7.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0533,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.116275
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 12,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 8,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 85,
            "touches": 42,
            "rating": 5.9,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.0298,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.006811
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 78,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00683408
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 23,
            "touches": 22,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0111,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00942512
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 23,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1662,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 12,
            "touches": 13,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0355,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "John Patrick",
            "slug": "john-joe-patrick-finn",
            "shortName": "J. Patrick",
            "position": "M",
            "jerseyNumber": "31",
            "height": 192,
            "userCount": 111,
            "id": 1100831,
            "country": {
                "alpha2": "IE",
                "alpha3": "IRL",
                "name": "Ireland",
                "slug": "ireland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064361600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0217,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 8,
            "touches": 4,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Gorka Rivera",
            "firstName": "",
            "lastName": "",
            "slug": "gorka-rivera",
            "shortName": "G. Rivera",
            "position": "D",
            "jerseyNumber": "30",
            "userCount": 11,
            "id": 1390614,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1091318400,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0641\u064a\u0631\u0627 \u060c \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u062c\u0648\u0631\u0643\u0627"
                }
            }
        },
        "teamId": 43753,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 27,
            "totalLongBalls": 25,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.1,
            "possessionLostCtrl": 18,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0822
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Hamari Traor\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "hamari-traore",
            "shortName": "H. Traor\u00e9",
            "position": "D",
            "jerseyNumber": "18",
            "height": 175,
            "userCount": 3598,
            "id": 362014,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696470400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0645\u0627\u0631\u064a \u062a\u0631\u0627\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062a\u0631\u0627\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 1,
            "minutesPlayed": 66,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 29,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 33,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 12,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 6,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 4,
            "wonContest": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "minutesPlayed": 60,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00726571
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 3,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0051593
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 6,
            "duelLost": 9,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 5,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 4,
            "challengeLost": 2,
            "totalContest": 1,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 10,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 8,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0193,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 10,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 62,
            "touches": 26,
            "rating": 6.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 7,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 2,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00503015
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "totalClearance": 2,
            "minutesPlayed": 30,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 14,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Orri Steinn \u00d3skarsson",
            "firstName": "",
            "lastName": "",
            "slug": "orri-steinn-oskarsson",
            "shortName": "O. S. \u00d3skarsson",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 2359,
            "id": 1026015,
            "country": {
                "alpha2": "IS",
                "alpha3": "ISL",
                "name": "Iceland",
                "slug": "iceland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093737600,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 1,
            "dispossessed": 1,
            "minutesPlayed": 24,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Egoitz Arana",
            "firstName": "Egoitz Arana",
            "lastName": "",
            "slug": "egoitz-arana",
            "shortName": "E. Arana",
            "position": "G",
            "jerseyNumber": "13",
            "height": 197,
            "userCount": 7,
            "id": 1170459,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014076800,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0646\u0627 \u060c \u0625\u064a\u062c\u0648\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0625\u064a\u062c\u0648\u064a\u062a\u0632"
                }
            }
        },
        "teamId": 24360,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.2803
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 2,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 82,
            "touches": 50,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.084,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00579528
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 58,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Valent\u00edn Barco",
            "firstName": "Valent\u00edn Barco",
            "lastName": "",
            "slug": "valentin-barco",
            "shortName": "V. Barco",
            "position": "D",
            "jerseyNumber": "19",
            "height": 172,
            "userCount": 7695,
            "id": 1127057,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1090540800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 34,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 3,
            "duelLost": 7,
            "duelWon": 10,
            "challengeLost": 2,
            "totalContest": 6,
            "wonContest": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 7,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.1434,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.181948
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 43,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 8,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "fouls": 3,
            "minutesPlayed": 82,
            "touches": 57,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0157733
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 52,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0224,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0141227
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 65,
            "touches": 19,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1818,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0340839
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 65,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.010098
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 39,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 7,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.3,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1223,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.12565
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.3349,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0712866
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "totalOffside": 1,
            "minutesPlayed": 25,
            "touches": 11,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelLost": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 25,
            "touches": 13,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0773,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0209594
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 8,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 9,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00916554
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Mat\u00edas \u00c1rbol",
            "firstName": "",
            "lastName": "",
            "slug": "matias-arbol",
            "shortName": "M. \u00c1rbol",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 26,
            "id": 1192489,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031788800,
            "proposedMarketValueRaw": {
                "value": 96000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 25,
            "totalLongBalls": 14,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "goalsPrevented": 0.3746
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 3,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 76,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0655,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0131139
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 63,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0459,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00734289
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 86,
            "accuratePass": 79,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0256282
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0191,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.582873
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 19,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "minutesPlayed": 58,
            "touches": 30,
            "rating": 7.4,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.6074,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0198521
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00727281
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0124,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 31,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0821818
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.8344,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0183084
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 6,
            "wonContest": 3,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 42,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0504,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.184901
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 45,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.3003,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0333301
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "fouls": 3,
            "minutesPlayed": 32,
            "touches": 16,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0181,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.127281
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 10,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 5,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 19,
            "totalLongBalls": 25,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 8.4,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "goalsPrevented": 1.0625
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 12,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0238473
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 7,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0513811
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0267,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0162532
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 4,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 82,
            "touches": 31,
            "rating": 8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.6738,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.289448
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 82,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.010785
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2861,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0346482
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 3,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 64,
            "touches": 28,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1238,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0844629
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 28,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0884,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.114369
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 19,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.039,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.250131
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 5,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 15,
            "rating": 7.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.017,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 26,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "wasFouled": 1,
            "minutesPlayed": 20,
            "touches": 6,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "minutesPlayed": 8,
            "touches": 3,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "penaltyWon": 1,
            "minutesPlayed": 8,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.7884,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.1994
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 6,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 58,
            "touches": 37,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0240699
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 92,
            "accuratePass": 81,
            "totalLongBalls": 10,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "totalClearance": 3,
            "outfielderBlock": 3,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 106,
            "rating": 7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00829607
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 77,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "minutesPlayed": 90,
            "touches": 94,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00672966
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 34,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 5,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.438972
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 58,
            "touches": 22,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2775,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0291772
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 55,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0143,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0703441
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 61,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "interceptionWon": 2,
            "wasFouled": 2,
            "minutesPlayed": 64,
            "touches": 81,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0577161
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 58,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 4,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 77,
            "touches": 78,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0618,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0143463
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 35,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0224,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00746747
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0504,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.112975
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "onTargetScoringAttempt": 3,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1143,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0221567
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 21,
            "rating": 6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 32,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0302,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0142713
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 31,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00862111
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1056,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "V\u00edctor Puig",
            "firstName": "V\u00edctor Puig",
            "slug": "victor-puig",
            "shortName": "V. Puig",
            "position": "G",
            "jerseyNumber": "31",
            "userCount": 11,
            "id": 1924133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1124064000
        },
        "teamId": 263535,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alvaro Killane",
            "firstName": "\u00c1lvaro Killane",
            "lastName": "",
            "slug": "killane-alvaro",
            "shortName": "\u00c1. Killane",
            "position": "G",
            "jerseyNumber": "30",
            "height": 186,
            "userCount": 61,
            "id": 1402668,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1102982400
        },
        "teamId": 24369,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 19,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 4,
            "accurateKeeperSweeper": 4,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -0.528
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 59,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0981423
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 46,
            "totalLongBalls": 11,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 2,
            "interceptionWon": 2,
            "lastManTackle": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00889824
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 45,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1267,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1329,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00635358
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 49,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0329,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.013057
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 3,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 5,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.347,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0446911
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "fouls": 3,
            "minutesPlayed": 88,
            "touches": 44,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0447,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.056084
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 33,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 5,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 44,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0299,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0479007
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 4,
            "wonContest": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 30,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.257883
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 1,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 10,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 32,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.174,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.451244
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 27,
            "touches": 12,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalOffside": 1,
            "minutesPlayed": 13,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "errorLeadToAGoal": 1,
            "ownGoals": 1,
            "minutesPlayed": 8,
            "touches": 5,
            "rating": 3.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 3.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 8,
            "touches": 4,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -1.0671
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 44,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.1,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0311681
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0124535
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "ownGoals": 1,
            "minutesPlayed": 45,
            "touches": 42,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0233018
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 36,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.6,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0342,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.906735
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 25,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0207,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00591955
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 41,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 76,
            "touches": 59,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0322068
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 35,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.7,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1057,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0559834
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2002,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0352297
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 3,
            "totalOffside": 2,
            "minutesPlayed": 64,
            "touches": 25,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 1.2279,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wasFouled": 3,
            "minutesPlayed": 45,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00865825
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "lastManTackle": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 25,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.115039
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 41,
            "touches": 25,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1228,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0320728
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 26,
            "touches": 6,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 14,
            "touches": 16,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00720472
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "C\u00e9sar Fern\u00e1ndez",
            "firstName": "Cesar Fernandez",
            "slug": "cesar-fernandez",
            "shortName": "C. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 181,
            "userCount": 14,
            "id": 1191206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075248000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": 0.055
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 50,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "totalTackle": 5,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.024,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.181855
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 46,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0568,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0085235
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 53,
            "totalLongBalls": 6,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 7.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00674319
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 69,
            "touches": 60,
            "rating": 6.8,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.180532
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.5,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0203,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0982002
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 69,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00769384
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 70,
            "totalLongBalls": 10,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalCross": 13,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 95,
            "rating": 8,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0396,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.104455
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 82,
            "touches": 49,
            "rating": 6.6,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.372,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.047865
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 82,
            "touches": 57,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0527594
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 3,
            "duelLost": 9,
            "duelWon": 5,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "goals": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 22,
            "rating": 7.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.2073,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0193811
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 21,
            "touches": 20,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0101,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rafa Mir",
            "slug": "rafa-mir",
            "shortName": "R. Mir",
            "position": "F",
            "jerseyNumber": "11",
            "height": 189,
            "userCount": 1282,
            "id": 825754,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 866592000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 21,
            "touches": 3,
            "rating": 6.6,
            "expectedGoals": 0.0894,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 14,
            "goalAssist": 0,
            "blockedScoringAttempt": 3,
            "minutesPlayed": 8,
            "touches": 17,
            "rating": 6.7,
            "expectedGoals": 0.1246,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0245162
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Sergi Can\u00f3s",
            "slug": "sergi-canos",
            "shortName": "S. Can\u00f3s",
            "position": "M",
            "jerseyNumber": "7",
            "height": 173,
            "userCount": 511,
            "id": 790833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 8,
            "touches": 17,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.126,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0187331
        },
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Ra\u00fal Jim\u00e9nez Latorre",
            "slug": "raul-jimenez-latorre",
            "shortName": "R. J. Latorre",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 137,
            "id": 1466122,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1140048000
        },
        "teamId": 72024,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Iker Cordoba",
            "slug": "iker-cordoba",
            "shortName": "I. C\u00f3rdoba",
            "position": "D",
            "jerseyNumber": "38",
            "height": 190,
            "userCount": 32,
            "id": 1563953,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1131667200,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Enzo Barrenechea",
            "firstName": "",
            "lastName": "",
            "slug": "enzo-barrenechea",
            "shortName": "E. Barrenechea",
            "position": "M",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 2828,
            "id": 1087316,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990489600,
            "proposedMarketValueRaw": {
                "value": 6900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 23,
            "totalLongBalls": 16,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.9748
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 47,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0129892
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 54,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 9,
            "outfielderBlock": 3,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 44,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 3,
            "totalClearance": 8,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 28,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0342,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0184851
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 69,
            "touches": 38,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0824,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0819921
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelWon": 5,
            "totalClearance": 3,
            "totalTackle": 3,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0546285
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "shotOffTarget": 2,
            "totalClearance": 4,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 68,
            "touches": 40,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0441,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00895715
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0246,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0306861
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 8,
            "duelWon": 9,
            "challengeLost": 1,
            "totalContest": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 4,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2403,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 8,
            "challengeLost": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 77,
            "touches": 37,
            "rating": 7.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1084,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0188058
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 31,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.507141
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 21,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Juan Bernat",
            "slug": "juan-bernat",
            "shortName": "J. Bernat",
            "position": "D",
            "jerseyNumber": "12",
            "height": 170,
            "userCount": 1507,
            "id": 96368,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730944000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnau Sol\u00e0",
            "firstName": "",
            "lastName": "",
            "slug": "arnau-sola",
            "shortName": "A. Sol\u00e0",
            "position": "D",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 80,
            "id": 997025,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049414400,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
                }
            }
        },
        "teamId": 24338,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Antonio Espigares",
            "firstName": "",
            "lastName": "",
            "slug": "espigares-antonio",
            "shortName": "A. Espigares",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 24,
            "id": 1142261,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1094342400,
            "proposedMarketValueRaw": {
                "value": 465000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Requena",
            "slug": "requena-jose",
            "shortName": "D. Requena",
            "position": "M",
            "jerseyNumber": "30",
            "height": 186,
            "userCount": 25,
            "id": 1521658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1076544000,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Cabanes De La Torre",
            "firstName": "Pau Cabanes De La Torre",
            "slug": "pau-cabanes-de-la-torre",
            "shortName": "P. C. D. L. Torre",
            "position": "F",
            "jerseyNumber": "33",
            "height": 179,
            "userCount": 66,
            "id": 1863206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1108598400,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Etta Eyong",
            "firstName": "Etta Eyong",
            "lastName": "",
            "slug": "etta-eyong",
            "shortName": "E. Eyong",
            "position": "F",
            "jerseyNumber": "36",
            "height": 181,
            "userCount": 188,
            "id": 1393673,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1072915200,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 14,
            "totalLongBalls": 14,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelWon": 2,
            "totalClearance": 2,
            "lastManTackle": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": 0.1784
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 57,
            "touches": 45,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 62,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0056573
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 69,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 4,
            "totalClearance": 4,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 67,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0302,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0754703
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00668738
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0312,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0195958
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0888265
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0259,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00829479
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 5,
            "rating": 6.3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 6,
            "aerialWon": 5,
            "duelLost": 7,
            "duelWon": 8,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 3,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1808,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00639259
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 4,
            "wonContest": 2,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 43,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.291052
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0491,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.142432
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 32,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.017141
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 30,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 33,
            "touches": 39,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0213494
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 23,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 17,
            "totalLongBalls": 17,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0208
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 2,
            "minutesPlayed": 33,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0677058
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 38,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 7,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0102,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0281131
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 72,
            "touches": 62,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.256567
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "minutesPlayed": 84,
            "touches": 50,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0146,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00963061
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 46,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 9,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0121816
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "minutesPlayed": 72,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.4018,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00505557
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 3,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 84,
            "touches": 45,
            "rating": 8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.325,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.342197
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0855,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.123937
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 5,
            "aerialWon": 5,
            "duelLost": 11,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 2,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 7.4,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0207,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.369316
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 57,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0833,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.019358
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Robert Navarro",
            "firstName": "",
            "lastName": "",
            "slug": "robert-navarro",
            "shortName": "R. Navarro",
            "position": "M",
            "jerseyNumber": "27",
            "height": 178,
            "userCount": 630,
            "id": 944165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018569600,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "fouls": 3,
            "minutesPlayed": 28,
            "touches": 8,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00727535
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "totalClearance": 1,
            "minutesPlayed": 18,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.110493
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0248541
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 5,
            "rating": 6.8,
            "expectedGoals": 0.0785,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 10,
            "touches": 6,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 32,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 4,
            "punches": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": -0.4264
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 43,
            "totalLongBalls": 16,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "duelWon": 5,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 45,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 9,
            "totalClearance": 8,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00525969
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 1,
            "lastManTackle": 1,
            "totalTackle": 3,
            "minutesPlayed": 45,
            "touches": 25,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "duelLost": 4,
            "dispossessed": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "minutesPlayed": 65,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.200198
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2557,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 45,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 19,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.4835,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.298071
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 26,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0216,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00741255
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 8,
            "duelLost": 7,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 7.5,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.3743,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0396,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0420641
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.5034,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.48517
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 17,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0112669
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 8,
            "rating": 7.3,
            "possessionLostCtrl": 2,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.149335
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "minutesPlayed": 10,
            "touches": 1,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Naci \u00dcn\u00fcvar",
            "firstName": "",
            "lastName": "",
            "slug": "naci-unuvar",
            "shortName": "N. \u00dcn\u00fcvar",
            "position": "F",
            "jerseyNumber": "37",
            "height": 168,
            "userCount": 1303,
            "id": 954317,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055462400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "goalsPrevented": -0.157
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0164,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0474649
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 49,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 6,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 7,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 2,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.2828,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0106313
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 49,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00951112
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "interceptionWon": 1,
            "minutesPlayed": 35,
            "touches": 12,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 63,
            "touches": 29,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0203605
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0191316
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 47,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 63,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.011,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.211144
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "minutesPlayed": 72,
            "touches": 35,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.569,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0897654
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 11,
            "accurateCross": 3,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.5,
            "possessionLostCtrl": 23,
            "expectedGoals": 0.099,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.114528
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 3,
            "minutesPlayed": 62,
            "touches": 14,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.2118,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "minutesPlayed": 55,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0118,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0304945
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 28,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "blockedScoringAttempt": 3,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 19,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0662,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.151056
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 18,
            "touches": 8,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0177,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pelayo Fern\u00e1ndez",
            "firstName": "",
            "lastName": "",
            "slug": "pelayo-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "27",
            "height": 193,
            "userCount": 220,
            "id": 1139724,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051574400,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "goodHighClaim": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": 0.4123
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "errorLeadToAGoal": 1,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.3,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0230822
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 86,
            "accuratePass": 76,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0206547
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 70,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.021854
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0286,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0330425
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 53,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0646,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0467611
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 3,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 58,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0179851
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 9,
            "wonContest": 5,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 49,
            "rating": 6.7,
            "possessionLostCtrl": 23,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0256756
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 40,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 81,
            "touches": 57,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.032,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0559185
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 13,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 8,
            "wonContest": 1,
            "totalTackle": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 5.8,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            },
            "expectedAssists": 0.0457676
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "duelLost": 6,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.044,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0106233
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "minutesPlayed": 26,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0118175
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1194,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0133351
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 19,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00899324
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 9,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai N\u00fa\u00f1ez",
            "slug": "unai-nunez",
            "shortName": "U. N\u00fa\u00f1ez",
            "position": "D",
            "jerseyNumber": "14",
            "height": 186,
            "userCount": 593,
            "id": 892521,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854582400,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.0771
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 60,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00592665
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 70,
            "totalLongBalls": 10,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7.8,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0603,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 49,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00761526
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 8,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.3,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0222443
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 52,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "errorLeadToAShot": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.010351
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 47,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 88,
            "touches": 66,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0172567
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 34,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 3,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 70,
            "touches": 50,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.105,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0546886
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 58,
            "rating": 7.3,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0235,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.10579
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0923,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0262948
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 70,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0798,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0179343
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 20,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.060817
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "goalAssist": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 20,
            "touches": 14,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.4735,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.013453
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 3,
            "wonContest": 2,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0220393
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 7.4,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.8925,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "Marc-Andr\u00e9 ter Stegen",
            "firstName": "",
            "lastName": "",
            "slug": "marc-andre-ter-stegen",
            "shortName": "M.-A ter Stegen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 73119,
            "id": 88625,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 704592000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.3398
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.086,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0564414
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 68,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialWon": 2,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 61,
            "touches": 80,
            "rating": 7.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0388,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.175512
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 105,
            "accuratePass": 95,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 114,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0538,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0174188
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.026011
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 2,
            "totalContest": 5,
            "wonContest": 4,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 2,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 83,
            "touches": 54,
            "rating": 8.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.8976,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.636785
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 64,
            "accuratePass": 63,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 61,
            "touches": 66,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.13918
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 43,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 61,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0937738
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 2,
            "totalCross": 1,
            "duelLost": 8,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 8,
            "wonContest": 2,
            "bigChanceCreated": 3,
            "totalTackle": 5,
            "wasFouled": 3,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 8.5,
            "possessionLostCtrl": 15,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.531652
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 73,
            "touches": 30,
            "rating": 8.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 1.2417,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.6,
                "alternative": null
            },
            "expectedAssists": 0.153662
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 29,
            "goalAssist": 1,
            "totalCross": 11,
            "accurateCross": 4,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 5,
            "blockedScoringAttempt": 1,
            "goals": 3,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 10,
            "possessionLostCtrl": 15,
            "expectedGoals": 2.2145,
            "keyPass": 3,
            "ratingVersions": {
                "original": 10,
                "alternative": null
            },
            "expectedAssists": 0.501102
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 29,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 29,
            "touches": 23,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00555331
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0247,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.113554
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 17,
            "touches": 6,
            "rating": 8.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.247,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.00824054
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 3,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 17,
            "totalLongBalls": 24,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 4,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -2.9989
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelWon": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 5.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 7,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 5.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 5.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 7,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 5.9,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 62,
            "touches": 35,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0658153
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 88,
            "touches": 31,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.134,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 2,
            "wasFouled": 1,
            "minutesPlayed": 57,
            "touches": 21,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 88,
            "touches": 30,
            "rating": 5.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.3818,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            },
            "expectedAssists": 0.0995886
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 2,
            "minutesPlayed": 56,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "fouls": 1,
            "minutesPlayed": 34,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 33,
            "touches": 6,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 6,
            "dispossessed": 2,
            "fouls": 4,
            "minutesPlayed": 28,
            "touches": 10,
            "rating": 5.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 2,
            "touches": 3,
            "possessionLostCtrl": 1
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "minutesPlayed": 2,
            "touches": 1,
            "possessionLostCtrl": 1
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Koke Iglesias",
            "slug": "koke",
            "shortName": "Koke",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 42,
            "id": 1184311,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110931200,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 30,
            "totalLongBalls": 15,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.6082
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 35,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 12,
            "totalContest": 4,
            "wonContest": 4,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 6,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.7,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.216953
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 50,
            "totalLongBalls": 13,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.352,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00654104
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 56,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 5,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0064421
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 25,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0285,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00793572
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00741571
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 41,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 4,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0265317
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 59,
            "rating": 6.8,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.1308,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.10985
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Giovani Lo Celso",
            "slug": "lo-celso-giovani",
            "shortName": "G. Lo Celso",
            "position": "M",
            "jerseyNumber": "20",
            "height": 177,
            "userCount": 17180,
            "id": 798835,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829008000,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceCreated": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "goals": 2,
            "totalClearance": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 69,
            "rating": 9.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.9505,
            "keyPass": 4,
            "ratingVersions": {
                "original": 9.7,
                "alternative": null
            },
            "expectedAssists": 0.54086
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 55,
            "rating": 7.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.4708,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0188544
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Vitor Roque",
            "firstName": "Vitor Roque",
            "slug": "vitor-roque",
            "shortName": "Vitor Roque",
            "position": "F",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 90786,
            "id": 1150391,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109548800,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "minutesPlayed": 86,
            "touches": 34,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.9995,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00628592
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 13,
            "rating": 6.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 19,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0057253
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0599084
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 9,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0391,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00603776
        },
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nobel Mendy",
            "slug": "mendy-nobel",
            "shortName": "N. Mendy",
            "position": "D",
            "jerseyNumber": "32",
            "height": 187,
            "userCount": 176,
            "id": 1458073,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Lucas Alcazar",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-alcazar",
            "shortName": "L. Alc\u00e1zar",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 71,
            "id": 1049200,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026345600,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "C\u00e9dric Bakambu",
            "firstName": "",
            "lastName": "",
            "slug": "cedric-bakambu",
            "shortName": "C. Bakambu",
            "position": "F",
            "jerseyNumber": "11",
            "height": 182,
            "userCount": 10705,
            "id": 115665,
            "country": {
                "alpha2": "CD",
                "alpha3": "COD",
                "name": "DR Congo",
                "slug": "dr-congo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 671328000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 5,
            "totalLongBalls": 18,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 4,
            "lastManTackle": 1,
            "totalTackle": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 6,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.8,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 0.1157
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 10,
            "duelWon": 3,
            "challengeLost": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.4,
            "possessionLostCtrl": 15,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.2368
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0261,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 12,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0828,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 16,
            "totalLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 7,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 3,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.0103,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.275997
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 4,
            "minutesPlayed": 75,
            "touches": 31,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0667,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0302828
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1047,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0256674
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 5,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0128,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0127165
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 75,
            "touches": 31,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0179164
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "totalContest": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0105877
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
            "firstName": "Bertug Yildirim",
            "slug": "bertug-ozgur-yildirim",
            "shortName": "B. Y\u0131ld\u0131r\u0131m",
            "position": "F",
            "jerseyNumber": "10",
            "height": 186,
            "userCount": 2238,
            "id": 1382235,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 75,
            "touches": 23,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0236,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.011809
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 18,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2527,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0103814
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 15,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0725441
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "minutesPlayed": 15,
            "touches": 15,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.04219
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Borja Mayoral",
            "firstName": "",
            "lastName": "",
            "slug": "borja-mayoral",
            "shortName": "B. Mayoral",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2825,
            "id": 604954,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860198400,
            "proposedMarketValueRaw": {
                "value": 15600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 15,
            "touches": 18,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0333,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0152824
        },
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djordjije Medenica",
            "firstName": "Djordjije Medenica",
            "slug": "djordjije-medenica",
            "shortName": "D. Medenica",
            "position": "G",
            "height": 185,
            "userCount": 24,
            "id": 1645004,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1163721600
        },
        "teamId": 375393,
        "shirtNumber": 45,
        "jerseyNumber": "45",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Guillem Trilla",
            "firstName": "Guillem",
            "lastName": "Trilla",
            "slug": "guillem-trilla",
            "shortName": "G. Trilla",
            "position": "D",
            "jerseyNumber": "33",
            "userCount": 16,
            "id": 1936438,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044316800,
            "proposedMarketValueRaw": {
                "value": 23000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "John Patrick",
            "slug": "john-joe-patrick-finn",
            "shortName": "J. Patrick",
            "position": "M",
            "jerseyNumber": "31",
            "height": 192,
            "userCount": 111,
            "id": 1100831,
            "country": {
                "alpha2": "IE",
                "alpha3": "IRL",
                "name": "Ireland",
                "slug": "ireland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064361600,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Coba da Costa",
            "slug": "da-costa-coba-gomes",
            "shortName": "C. d. Costa",
            "position": "F",
            "jerseyNumber": "29",
            "userCount": 85,
            "id": 1392054,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027641600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Getafe"
    }
]
[
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 20,
            "totalLongBalls": 20,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 7,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.8,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 0.4051
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0148529
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 32,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "penaltyConceded": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 3,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 33,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.012,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "duelWon": 4,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 81,
            "touches": 69,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0295959
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 78,
            "touches": 42,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.3283,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0115183
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 44,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0268,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.133568
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 56,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 81,
            "touches": 73,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0465,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.178145
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 23,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 8,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 7,
            "wonContest": 4,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 46,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.286,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0162971
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 78,
            "touches": 42,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0618,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00801006
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "minutesPlayed": 29,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0364418
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 3,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alvaro Killane",
            "firstName": "\u00c1lvaro Killane",
            "lastName": "",
            "slug": "killane-alvaro",
            "shortName": "\u00c1. Killane",
            "position": "G",
            "jerseyNumber": "30",
            "height": 186,
            "userCount": 61,
            "id": 1402668,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1102982400
        },
        "teamId": 24369,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Aboubacar Bassinga",
            "firstName": "Aboubacar",
            "lastName": "Bassinga",
            "slug": "aboubacar-bassinga",
            "shortName": "A. Bassinga",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 77,
            "id": 1636036,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121212800,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Fabio Gonz\u00e1lez",
            "slug": "fabio-gonzalez",
            "shortName": "F. Gonz\u00e1lez",
            "position": "M",
            "jerseyNumber": "6",
            "height": 176,
            "userCount": 51,
            "id": 894477,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855705600,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 3,
            "totalClearance": 3,
            "goodHighClaim": 1,
            "saves": 1,
            "punches": 3,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": -0.1527
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 39,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 8,
            "challengeLost": 2,
            "totalContest": 5,
            "wonContest": 4,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 76,
            "touches": 67,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.438274
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 55,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0137856
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 58,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.1785,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0164435
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 37,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00932813
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 54,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 8.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1734,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.103767
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 78,
            "accuratePass": 69,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "interceptionWon": 4,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.2867,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.085803
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0389392
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 41,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 59,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.487942
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 8,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 4,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 86,
            "touches": 44,
            "rating": 7.5,
            "possessionLostCtrl": 15,
            "expectedGoals": 1.2979,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.126347
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 10,
            "wonContest": 5,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.5235,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.10782
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 29,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 44,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0062,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00953352
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 20,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0376,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0433421
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "bigChanceCreated": 2,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 26,
            "touches": 14,
            "rating": 7.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.2625,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.252188
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 14,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00597919
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "minutesPlayed": 9,
            "touches": 3,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1893,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jacobo Naveros",
            "firstName": "",
            "lastName": "",
            "slug": "jacobo-naveros",
            "shortName": "J. Naveros",
            "position": "D",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 1820,
            "id": 1403348,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1104969600,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 62,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0249,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0294045
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 95,
            "accuratePass": 85,
            "totalLongBalls": 10,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "minutesPlayed": 90,
            "touches": 101,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0255768
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 92,
            "accuratePass": 90,
            "totalLongBalls": 7,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 7.6,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.369689
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 36,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0490384
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 35,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 81,
            "touches": 57,
            "rating": 8.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.6136,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "expectedAssists": 0.138474
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 47,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 64,
            "touches": 57,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0350004
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 58,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0461954
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 81,
            "touches": 41,
            "rating": 7.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.331,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.181376
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.5052,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0339858
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 3,
            "minutesPlayed": 64,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0323,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.128794
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 24,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0144391
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalOffside": 1,
            "minutesPlayed": 26,
            "touches": 6,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.9105,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Y\u00e1ser Asprilla",
            "firstName": "Yaser Asprilla",
            "lastName": "",
            "slug": "yaser-asprilla",
            "shortName": "Y. Asprilla",
            "position": "M",
            "jerseyNumber": "10",
            "height": 185,
            "userCount": 5867,
            "id": 1092769,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1069200000,
            "proposedMarketValueRaw": {
                "value": 19300000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 12,
            "rating": 6.9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0419414
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.57795
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 9,
            "touches": 1,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 40,
            "totalLongBalls": 16,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.5687
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.00582831
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 40,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 48,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 5.8,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 5.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "expectedAssists": 0.0538755
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 32,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "errorLeadToAGoal": 1,
            "wasFouled": 2,
            "minutesPlayed": 85,
            "touches": 48,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 41,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "interceptionWon": 4,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0342582
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "minutesPlayed": 59,
            "touches": 18,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "totalContest": 3,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 68,
            "touches": 19,
            "rating": 6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "fouls": 3,
            "minutesPlayed": 58,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "minutesPlayed": 31,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00826018
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 32,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0378,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 21,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00512332
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "minutesPlayed": 11,
            "touches": 10,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Dimitrios Stamatakis",
            "slug": "stamatakis-dimitrios",
            "shortName": "D. Stamatakis",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 89,
            "id": 1163077,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051056000,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24328,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jos\u00e9 Manuel Arn\u00e1iz",
            "slug": "jose-manuel-arnaiz",
            "shortName": "J. M. Arn\u00e1iz",
            "position": "F",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 362,
            "id": 824130,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 797904000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Osasuna"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.0345
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 42,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0072,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0126469
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 48,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0222,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00739488
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 71,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00779676
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 54,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.137,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0321752
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 38,
            "goalAssist": 0,
            "totalCross": 11,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 3,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.2747,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.42172
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 35,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 5,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 62,
            "touches": 66,
            "rating": 8,
            "possessionLostCtrl": 17,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.679261
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 91,
            "accuratePass": 82,
            "totalLongBalls": 10,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 105,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2359,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0290428
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "interceptionWon": 1,
            "minutesPlayed": 45,
            "touches": 35,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.4868,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0216212
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "totalCross": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 45,
            "touches": 23,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.4543,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0172699
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 5,
            "duelWon": 7,
            "dispossessed": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 21,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.5002,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0799049
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 45,
            "touches": 31,
            "rating": 7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0246896
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 58,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0669,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0864361
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 31,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.466411
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "blockedScoringAttempt": 4,
            "minutesPlayed": 28,
            "touches": 22,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2835,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.17998
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 21,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 17,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0451805
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juan Musso",
            "slug": "juan-musso",
            "shortName": "J. Musso",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 3748,
            "id": 263651,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768182400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0633\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Cl\u00e9ment Lenglet",
            "slug": "clement-lenglet",
            "shortName": "C. Lenglet",
            "position": "D",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 7027,
            "id": 580550,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 803347200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 19,
            "totalLongBalls": 30,
            "accurateLongBalls": 9,
            "goalAssist": 0,
            "errorLeadToAShot": 1,
            "savedShotsFromInsideTheBox": 6,
            "saves": 7,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 8.1,
            "possessionLostCtrl": 22,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "goalsPrevented": 1.3646
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0367,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.192098
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 3,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 42,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 11,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 65,
            "touches": 53,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0239316
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0154645
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0084,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.302978
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "totalClearance": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 32,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00742724
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 32,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 87,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0786,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0335404
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 5,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0778,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0111504
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.3758,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0154106
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "totalClearance": 3,
            "minutesPlayed": 26,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0110285
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Walid Cheddira",
            "slug": "walid-cheddira",
            "shortName": "W. Cheddira",
            "position": "F",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 4728,
            "id": 917485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885427200,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 6,
            "duelLost": 11,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 11,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0295,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "minutesPlayed": 25,
            "touches": 15,
            "rating": 7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 24,
            "touches": 12,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jose Luis Catala",
            "slug": "catala-jose-luis",
            "shortName": "J. L. Catala",
            "position": "D",
            "jerseyNumber": "27",
            "height": 188,
            "userCount": 7,
            "id": 1604871,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1092614400,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 18,
            "totalLongBalls": 26,
            "accurateLongBalls": 12,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.2,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.2041
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Hamari Traor\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "hamari-traore",
            "shortName": "H. Traor\u00e9",
            "position": "D",
            "jerseyNumber": "18",
            "height": 175,
            "userCount": 3598,
            "id": 362014,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696470400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0645\u0627\u0631\u064a \u062a\u0631\u0627\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062a\u0631\u0627\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0462513
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Igor Zubeldia",
            "slug": "igor-zubeldia",
            "shortName": "I. Zubeldia",
            "position": "D",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 903,
            "id": 838159,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859680000,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 36,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 81,
            "touches": 48,
            "rating": 5.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 5.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 20,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 9,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "lastManTackle": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0141,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00671913
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 4,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 5,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.7,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1973,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0374158
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.114,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.034119
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 81,
            "touches": 42,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.465,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00955553
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 9,
            "accurateCross": 6,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 2,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 40,
            "rating": 7.6,
            "possessionLostCtrl": 11,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.557945
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00987258
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "blockedScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 29,
            "touches": 5,
            "rating": 4.9,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.1191,
            "ratingVersions": {
                "original": 4.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "fouls": 4,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0831,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 3,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 24,
            "touches": 14,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0418,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 9,
            "touches": 18,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0243538
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aitor Fraga",
            "slug": "aitor-fraga",
            "shortName": "A. Fraga",
            "position": "G",
            "jerseyNumber": "1",
            "userCount": 36,
            "id": 1000247,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041379200,
            "proposedMarketValueRaw": {
                "value": 275000,
                "currency": "EUR"
            }
        },
        "teamId": 24360,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Urko Gonz\u00e1lez",
            "slug": "urko-gonzalez",
            "shortName": "U. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 131,
            "id": 1064009,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985046400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 11,
            "totalLongBalls": 16,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.5016
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 6,
            "duelLost": 8,
            "duelWon": 2,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0191839
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 31,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 7,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "penaltyWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0146693
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0621,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0303522
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalClearance": 5,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0250477
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 29,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0153,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 3,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 48,
            "rating": 7.2,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0168,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.15388
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 34,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 8,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0134,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0804838
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 29,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.119732
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 63,
            "touches": 14,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.9027,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0275,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.175683
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 27,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0522039
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.097,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00705482
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Toni Mart\u00ednez",
            "firstName": "",
            "lastName": "",
            "slug": "toni-martinez",
            "shortName": "T. Mart\u00ednez",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1094,
            "id": 831253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 867628800,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "hitWoodwork": 1,
            "goals": 1,
            "minutesPlayed": 20,
            "touches": 12,
            "rating": 7.5,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.4591,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 3
        },
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Santiago Mouri\u00f1o",
            "firstName": "",
            "lastName": "",
            "slug": "santiago-mourino",
            "shortName": "S. Mouri\u00f1o",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 728,
            "id": 1468046,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013558400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 23,
            "totalLongBalls": 17,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 33,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 9,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.8,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0729604
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 68,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 8,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 8,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 94,
            "rating": 7.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00843235
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 43,
            "totalLongBalls": 12,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00568424
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 8,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 79,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0808225
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0707869
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 3,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 52,
            "rating": 7.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0289,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0407773
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.8,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.2337,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.144653
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 45,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.4309,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0294976
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lvaro Djal\u00f3",
            "firstName": "\u00c1lvaro Djal\u00f3",
            "lastName": "",
            "slug": "alvaro-djalo",
            "shortName": "\u00c1. Djal\u00f3",
            "position": "M",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 1016,
            "id": 1160960,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934761600,
            "proposedMarketValueRaw": {
                "value": 16200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 58,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0192818
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.3022,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.008738
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 15,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.3211,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 20,
            "touches": 13,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0061213
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "minutesPlayed": 19,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0692,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalOffside": 1,
            "minutesPlayed": 19,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai Egu\u00edluz",
            "firstName": "",
            "lastName": "",
            "slug": "unai-eguiluz",
            "shortName": "U. Egu\u00edluz",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 73,
            "id": 1391374,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016496000,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Serrano",
            "firstName": "",
            "lastName": "",
            "slug": "nico-serrano",
            "shortName": "N. Serrano",
            "position": "M",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 307,
            "id": 1019318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Malcom Ares",
            "firstName": "",
            "lastName": "",
            "slug": "malcom-ares",
            "shortName": "M. Ares",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 334,
            "id": 1391487,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002844800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0648 \u060c \u0645\u0627\u0644\u0643\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0644\u0643\u0648\u0645"
                }
            }
        },
        "teamId": 2815,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 23,
            "totalLongBalls": 17,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": -0.177
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 28,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 66,
            "rating": 6.8,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00747958
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 46,
            "totalLongBalls": 8,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "challengeLost": 2,
            "totalClearance": 9,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 53,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 11,
            "challengeLost": 1,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 2,
            "totalTackle": 6,
            "wasFouled": 1,
            "minutesPlayed": 89,
            "touches": 75,
            "rating": 7.4,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.026,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00662263
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "goalAssist": 0,
            "totalCross": 4,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 82,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0508,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0164242
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 43,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 82,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0117707
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0270305
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00503671
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 28,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00595186
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rafa Mir",
            "slug": "rafa-mir",
            "shortName": "R. Mir",
            "position": "F",
            "jerseyNumber": "11",
            "height": 189,
            "userCount": 1282,
            "id": 825754,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 866592000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 23,
            "rating": 6.3,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00501779
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 31,
            "touches": 22,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00787473
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 8,
            "touches": 3,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "minutesPlayed": 8,
            "touches": 3,
            "rating": 6.2,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 1,
            "touches": 6,
            "possessionLostCtrl": 2
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "goalAssist": 0,
            "totalOffside": 1,
            "minutesPlayed": 1,
            "touches": 1,
            "possessionLostCtrl": 1
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Ra\u00fal Jim\u00e9nez Latorre",
            "slug": "raul-jimenez-latorre",
            "shortName": "R. J. Latorre",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 137,
            "id": 1466122,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1140048000
        },
        "teamId": 72024,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Iker Cordoba",
            "slug": "iker-cordoba",
            "shortName": "I. C\u00f3rdoba",
            "position": "D",
            "jerseyNumber": "38",
            "height": 190,
            "userCount": 32,
            "id": 1563953,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1131667200,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Alberto Mari",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-mari",
            "shortName": "A. Mar\u00ed",
            "position": "F",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 110,
            "id": 990232,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994809600,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0627\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2815,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 24,
            "totalLongBalls": 6,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.0186
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 29,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.4,
            "possessionLostCtrl": 17,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.118407
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 78,
            "accuratePass": 71,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 3,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 87,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 73,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.03,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 43,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0917675
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 42,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 7,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 62,
            "touches": 55,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1874,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0205398
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 55,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00773886
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 6,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 3,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 55,
            "rating": 7.9,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1497,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0138602
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 62,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2492,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0476853
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 61,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 4,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 81,
            "touches": 58,
            "rating": 7.4,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1893,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.200713
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juanmi Latasa",
            "slug": "juanmi-latasa",
            "shortName": "J. Latasa",
            "position": "F",
            "jerseyNumber": "14",
            "height": 191,
            "userCount": 2941,
            "id": 966679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985305600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "shotOffTarget": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 14,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1997,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0203708
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 21,
            "rating": 6.7,
            "expectedGoals": 0.1214,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "minutesPlayed": 28,
            "touches": 20,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.137751
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 4,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "minutesPlayed": 1,
            "touches": 1,
            "keyPass": 1,
            "expectedAssists": 0.0608717
        },
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Koke Iglesias",
            "slug": "koke",
            "shortName": "Koke",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 42,
            "id": 1184311,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110931200,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 9,
            "totalLongBalls": 23,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "goodHighClaim": 3,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.4378
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0105399
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 52,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "totalClearance": 5,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0102973
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 45,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 2,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 28,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0628,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00602727
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 85,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0237,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0112168
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 28,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00671509
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.105272
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 30,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0068206
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 11,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 22,
            "rating": 6.1,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0201,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0101814
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0449,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0770184
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "minutesPlayed": 24,
            "touches": 14,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0269,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0494721
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wasFouled": 1,
            "minutesPlayed": 19,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Aritz Arambarri",
            "firstName": "",
            "lastName": "",
            "slug": "aritz-arambarri",
            "shortName": "A. Arambarri",
            "position": "D",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 43,
            "id": 992397,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886204800,
            "proposedMarketValueRaw": {
                "value": 540000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0631\u0627\u0646\u0628\u0631\u064a, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u0631\u0627\u0646\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2839,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 14,
            "totalLongBalls": 22,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00527272,
            "goalsPrevented": -0.3022
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00823777
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 22,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 3,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.035317
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalClearance": 7,
            "outfielderBlock": 3,
            "interceptionWon": 5,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0056082
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 13,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "duelLost": 12,
            "duelWon": 10,
            "challengeLost": 6,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 6,
            "wasFouled": 3,
            "fouls": 6,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0382,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 2,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0845815
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 56,
            "touches": 25,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0813,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.014761
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 27,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 56,
            "touches": 37,
            "rating": 7.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0847,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.064528
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 1,
            "outfielderBlock": 1,
            "totalOffside": 1,
            "minutesPlayed": 64,
            "touches": 23,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0641221
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 10,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0562,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00578531
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 34,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "duelLost": 1,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 34,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0644,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0862618
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "minutesPlayed": 26,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "minutesPlayed": 26,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0463,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 22,
            "touches": 20,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pelayo Fern\u00e1ndez",
            "firstName": "",
            "lastName": "",
            "slug": "pelayo-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "27",
            "height": 193,
            "userCount": 220,
            "id": 1139724,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051574400,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Etienne Eto'o Pineda",
            "slug": "etienne-etoo-pineda",
            "shortName": "E. E. Pineda",
            "position": "F",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 1906,
            "id": 1103233,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1029628800
        },
        "teamId": 43756,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Marc-Andr\u00e9 ter Stegen",
            "firstName": "",
            "lastName": "",
            "slug": "marc-andre-ter-stegen",
            "shortName": "M.-A ter Stegen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 73119,
            "id": 88625,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 704592000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": -0.6391
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 48,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 94,
            "rating": 6.9,
            "possessionLostCtrl": 21,
            "expectedGoals": 0.0934,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0996779
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 71,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 5,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0513,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00991763
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 47,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0578,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0160648
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 31,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 49,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0626067
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Bernal",
            "slug": "marc-bernal",
            "shortName": "M. Bernal",
            "position": "M",
            "jerseyNumber": "28",
            "height": 191,
            "userCount": 14917,
            "id": 1526618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1180137600,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 48,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 74,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0672,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0108248
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 51,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 84,
            "rating": 7.9,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.3163,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.451218
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 41,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 11,
            "wonContest": 7,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 4,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 82,
            "rating": 8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.2744,
            "keyPass": 4,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.458288
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.2,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.2775,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.13397
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 19,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0722,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0188969
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0466,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0150434
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Dani Olmo",
            "slug": "dani-olmo",
            "shortName": "D. Olmo",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 82401,
            "id": 789071,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894499200,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 39,
            "rating": 7.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1521,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.505859
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 16,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00600665
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "minutesPlayed": 11,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 1,
            "touches": 4,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Andr\u00e9s Cuenca",
            "firstName": "Andr\u00e9s Cuenca",
            "slug": "andres-cuenca",
            "shortName": "A. Cuenca",
            "position": "D",
            "jerseyNumber": "27",
            "height": 181,
            "userCount": 4193,
            "id": 1503832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1181520000,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 12,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 7,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 8.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 8.5,
                "alternative": null
            },
            "goalsPrevented": 0.9776
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.3,
            "possessionLostCtrl": 18,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.07399
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 46,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 8,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00502392
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 42,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0287,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00674951
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 23,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0105,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0525053
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 44,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 2,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0279504
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 38,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 54,
            "rating": 7,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0230498
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 82,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 18,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0683102
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 30,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0304,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.336291
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 2,
            "totalClearance": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 82,
            "touches": 40,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.6919,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0390473
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 65,
            "touches": 17,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00671575
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 2,
            "minutesPlayed": 25,
            "touches": 22,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.135107
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 25,
            "touches": 8,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0436,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 10,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0225,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "fouls": 2,
            "minutesPlayed": 8,
            "touches": 3,
            "rating": 6.5,
            "expectedGoals": 0.0289,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 8,
            "touches": 1,
            "rating": 6.6,
            "expectedGoals": 0.0438,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jan Salas",
            "slug": "jan-salas",
            "shortName": "J. Salas",
            "position": "M",
            "jerseyNumber": "28",
            "height": 182,
            "userCount": 22,
            "id": 1905699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1123632000,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 34997,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 22,
            "totalLongBalls": 19,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "goalsPrevented": 0.8811
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0281,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.108954
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 55,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 4,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0447,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 43,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 5,
            "minutesPlayed": 70,
            "touches": 55,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 50,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 3,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 7.5,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0096,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.101578
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 42,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1336,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00749782
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 44,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 63,
            "touches": 59,
            "rating": 7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0102225
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 26,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 89,
            "touches": 50,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0513,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0696841
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 70,
            "touches": 43,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1409,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0161009
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 13,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0852,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0135135
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 41,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 89,
            "touches": 65,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1582,
            "keyPass": 6,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.123601
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0914,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "interceptionWon": 3,
            "minutesPlayed": 27,
            "touches": 9,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 20,
            "touches": 8,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "minutesPlayed": 20,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 1,
            "touches": 1
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 2,
            "challengeLost": 2,
            "totalClearance": 1,
            "errorLeadToAGoal": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 22,
            "rating": 6.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "goalsPrevented": -0.2322
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 56,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 6,
            "outfielderBlock": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0287,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.17733
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 42,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalClearance": 7,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 7.1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00661417
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 58,
            "touches": 44,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0572,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00627426
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 34,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 8.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 1.0467,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.8,
                "alternative": null
            },
            "expectedAssists": 0.298695
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "minutesPlayed": 58,
            "touches": 31,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2894,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.112859
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 57,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0825,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0579397
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 51,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.929,
            "keyPass": 1,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0254372
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 10,
            "accurateCross": 5,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 72,
            "touches": 48,
            "rating": 7.9,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.5059,
            "keyPass": 8,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.746484
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 27,
            "rating": 7.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.176,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.13868
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 59,
            "touches": 14,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0207,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0221761
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 17,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0393,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0104358
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "minutesPlayed": 32,
            "touches": 21,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 32,
            "touches": 15,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0596,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0151187
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "penaltyWon": 1,
            "minutesPlayed": 31,
            "touches": 14,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.4362,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.042906
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 18,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0251,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00953435
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnau Sol\u00e0",
            "firstName": "",
            "lastName": "",
            "slug": "arnau-sola",
            "shortName": "A. Sol\u00e0",
            "position": "D",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 80,
            "id": 997025,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049414400,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
                }
            }
        },
        "teamId": 24338,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 4,
            "penaltySave": 1,
            "saves": 6,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": 1.3064
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 76,
            "accuratePass": 67,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "ownGoals": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0631,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0318457
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 68,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 79,
            "rating": 7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.221,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 46,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 56,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00634316
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 7.9,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.0322,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.291566
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 71,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.19503
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "challengeLost": 2,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 58,
            "touches": 35,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0544629
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 58,
            "touches": 39,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0223,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0274875
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 4,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.503,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.173181
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 74,
            "touches": 27,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1228,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0143342
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 3,
            "bigChanceCreated": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.2202,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.331208
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 22,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 2,
            "penaltyConceded": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 32,
            "touches": 27,
            "rating": 6.3,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.052046
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 28,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 2,
            "minutesPlayed": 32,
            "touches": 31,
            "rating": 7,
            "expectedGoals": 0.1262,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.259555
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 20,
            "touches": 16,
            "rating": 6.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 1.1115,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.443628
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 13,
            "goalAssist": 0,
            "minutesPlayed": 20,
            "touches": 15,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.127511
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "hitWoodwork": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.308,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marc Vidal",
            "firstName": "",
            "lastName": "",
            "slug": "marc-vidal",
            "shortName": "M. Vidal",
            "position": "G",
            "jerseyNumber": "13",
            "height": 183,
            "userCount": 170,
            "id": 905443,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 950486400,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Celta Vigo"
    }
]
[
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 4,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 7.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "goalsPrevented": 0.4754
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 24,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 8.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0338,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.3,
                "alternative": null
            },
            "expectedAssists": 0.660719
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 6,
            "totalClearance": 6,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00710737
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 73,
            "accuratePass": 64,
            "totalLongBalls": 13,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 7,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 7.4,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00751476
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 57,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "totalClearance": 5,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0156217
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 30,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 58,
            "touches": 46,
            "rating": 7.3,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1602,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0451951
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 33,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 42,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.02119
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 47,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 7.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0184,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0562511
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 27,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 54,
            "rating": 7.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1126,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.166668
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "minutesPlayed": 81,
            "touches": 30,
            "rating": 7.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.13,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0332777
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 81,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0452,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Conor Gallagher",
            "firstName": "",
            "lastName": "",
            "slug": "conor-gallagher",
            "shortName": "C. Gallagher",
            "position": "M",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 19823,
            "id": 904970,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949795200,
            "proposedMarketValueRaw": {
                "value": 49000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 32,
            "touches": 18,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00567093
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 31,
            "touches": 26,
            "rating": 7.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.6698,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0180611
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 22,
            "touches": 14,
            "rating": 7.1,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 2,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 11,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0461,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0205113
        },
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alejandro Iturbe",
            "firstName": "",
            "lastName": "",
            "slug": "iturbe-alejandro",
            "shortName": "A. Iturbe",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 147,
            "id": 1019324,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062460800,
            "proposedMarketValueRaw": {
                "value": 465000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Ilias Kostis",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-kostis",
            "shortName": "I. Kostis",
            "position": "D",
            "jerseyNumber": "5",
            "height": 191,
            "userCount": 585,
            "id": 1145621,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046304000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "fouls": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 23,
            "rating": 6.2,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "goalsPrevented": -1.5689
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 91,
            "accuratePass": 88,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 107,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.161686
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 94,
            "accuratePass": 91,
            "totalLongBalls": 6,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 2,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 105,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0406379
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 103,
            "accuratePass": 97,
            "totalLongBalls": 9,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 116,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0111,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0803521
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 40,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 4,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0209,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.18137
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 58,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0267283
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 34,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 42,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0372,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0137601
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 41,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0153,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0171054
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Viktor Tsygankov",
            "firstName": "",
            "lastName": "",
            "slug": "viktor-tsygankov",
            "shortName": "V. Tsygankov",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 5498,
            "id": 319735,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 879552000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.176044
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 59,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.294,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0807306
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 4,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.1847,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.050983
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 32,
            "touches": 16,
            "rating": 6.8,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0469561
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 33,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "minutesPlayed": 31,
            "touches": 41,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.020159
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bojan Miovski",
            "firstName": "",
            "lastName": "",
            "slug": "bojan-miovski",
            "shortName": "B. Miovski",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 1363,
            "id": 945768,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930182400,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 31,
            "touches": 10,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1176,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00657899
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iker Almena",
            "slug": "almena-iker",
            "shortName": "I. Almena",
            "position": "F",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 216,
            "id": 1513656,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083628800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            }
        },
        "teamId": 56027,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "minutesPlayed": 22,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0119321
        },
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Pau L\u00f3pez",
            "slug": "pau-lopez",
            "shortName": "P. L\u00f3pez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 189,
            "userCount": 1021,
            "id": 548848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787276800,
            "proposedMarketValueRaw": {
                "value": 8000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 20,
            "totalLongBalls": 19,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 7.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "goalsPrevented": 0.3939
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 5,
            "interceptionWon": 3,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0243824
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 19,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0210789
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 7,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 86,
            "touches": 39,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Manuel S\u00e1nchez",
            "slug": "manuel-sanchez",
            "shortName": "M. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 179,
            "userCount": 454,
            "id": 984789,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966988800,
            "proposedMarketValueRaw": {
                "value": 6400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 15,
            "totalLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 17,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0498444
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 3,
            "totalTackle": 1,
            "wasFouled": 4,
            "minutesPlayed": 88,
            "touches": 52,
            "rating": 7,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0450116
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 32,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0282,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00889907
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "minutesPlayed": 77,
            "touches": 53,
            "rating": 7,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1007,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0124531
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 61,
            "touches": 24,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0598,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0432712
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 61,
            "touches": 29,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0203,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.025007
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0392849
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 9,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Mart\u00edn",
            "firstName": "Carlos Mart\u00edn",
            "lastName": "",
            "slug": "carlos-martin",
            "shortName": "C. Mart\u00edn",
            "position": "F",
            "jerseyNumber": "15",
            "height": 182,
            "userCount": 531,
            "id": 1131581,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019433600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 1,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 29,
            "touches": 9,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 13,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0110334
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "interceptionWon": 1,
            "minutesPlayed": 2,
            "touches": 1
        },
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abderrahman Rebbach",
            "firstName": "",
            "lastName": "",
            "slug": "abderrahman-rebbach",
            "shortName": "A. Rebbach",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 832,
            "id": 1082968,
            "country": {
                "alpha2": "DZ",
                "alpha3": "DZA",
                "name": "Algeria",
                "slug": "algeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 775000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 21,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "saves": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.0858
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 2,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0366387
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 47,
            "totalLongBalls": 10,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 6,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "minutesPlayed": 86,
            "touches": 69,
            "rating": 7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 48,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.146554
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "William Carvalho",
            "slug": "william-carvalho",
            "shortName": "W. Carvalho",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 1722,
            "id": 137978,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648, \u0648\u064a\u0644\u064a\u0627\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 91,
            "accuratePass": 75,
            "totalLongBalls": 16,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 7,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 106,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0355,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.087287
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 49,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0289551
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 76,
            "touches": 50,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0819,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0858046
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nabil Fekir",
            "slug": "nabil-fekir",
            "shortName": "N. Fekir",
            "position": "M",
            "jerseyNumber": "20",
            "height": 173,
            "userCount": 4538,
            "id": 337671,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742953600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0642\u064a\u0631, \u0646\u0628\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u0642\u064a\u0631"
                }
            }
        },
        "teamId": 8090,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 37,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 11,
            "duelWon": 4,
            "dispossessed": 4,
            "totalContest": 3,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 5.9,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.6456,
            "keyPass": 1,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.121418
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.4314,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 63,
            "touches": 22,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0176,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0748484
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 27,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00770749
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 27,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1953,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0201774
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 27,
            "touches": 18,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0512,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.143473
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Rodri S\u00e1nchez",
            "slug": "rodri-sanchez",
            "shortName": "R. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 175,
            "userCount": 652,
            "id": 1031421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958435200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 44444,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 3,
            "wonContest": 2,
            "minutesPlayed": 14,
            "touches": 12,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.103083
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Natan",
            "firstName": "",
            "lastName": "",
            "slug": "natan",
            "shortName": "Natan",
            "position": "D",
            "jerseyNumber": "6",
            "height": 188,
            "userCount": 2254,
            "id": 1015287,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981417600,
            "proposedMarketValueRaw": {
                "value": 12700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0646\u0627\u062a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "shotOffTarget": 1,
            "minutesPlayed": 9,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.0299,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Manu Gonz\u00e1lez",
            "firstName": "Manu Gonz\u00e1lez",
            "slug": "manu-gonzalez",
            "shortName": "M. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "41",
            "userCount": 59,
            "id": 1823954,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1176854400
        },
        "teamId": 275789,
        "shirtNumber": 41,
        "jerseyNumber": "41",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    }
]
[
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 15,
            "totalLongBalls": 20,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.4,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 1.3254
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.1,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.027357
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Aritz Arambarri",
            "firstName": "",
            "lastName": "",
            "slug": "aritz-arambarri",
            "shortName": "A. Arambarri",
            "position": "D",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 43,
            "id": 992397,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886204800,
            "proposedMarketValueRaw": {
                "value": 540000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0631\u0627\u0646\u0628\u0631\u064a, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u0631\u0627\u0646\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2839,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 4,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 49,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 4,
            "duelWon": 5,
            "totalClearance": 7,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00749669
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 5,
            "interceptionWon": 5,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00635155
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00646564
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 24,
            "rating": 6.3,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1572,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0513423
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 28,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.8629,
            "keyPass": 1,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0761896
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "penaltyWon": 1,
            "minutesPlayed": 87,
            "touches": 46,
            "rating": 7.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0363,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.11838
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "minutesPlayed": 82,
            "touches": 46,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0393574
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 82,
            "touches": 26,
            "rating": 6.4,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.137,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0364126
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 28,
            "touches": 22,
            "rating": 6.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "minutesPlayed": 28,
            "touches": 11,
            "rating": 7.5,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0269,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.268055
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 8,
            "touches": 6,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.2204,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 8,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0419,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e0 Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "altimira-adria",
            "shortName": "A. Altimira",
            "position": "D",
            "jerseyNumber": "2",
            "height": 170,
            "userCount": 220,
            "id": 980732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985737600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 13,
            "touches": 1,
            "rating": 6.3,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jackson Porozo",
            "slug": "jackson-porozo",
            "shortName": "J. Porozo",
            "position": "D",
            "jerseyNumber": "4",
            "height": 192,
            "userCount": 870,
            "id": 978518,
            "country": {
                "alpha2": "EC",
                "alpha3": "ECU",
                "name": "Ecuador",
                "slug": "ecuador"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 965347200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0625\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jorge S\u00e1enz",
            "slug": "jorge-saenz",
            "shortName": "J. S\u00e1enz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 192,
            "userCount": 145,
            "id": 592098,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848188800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Munir El Haddadi",
            "firstName": "",
            "lastName": "",
            "slug": "munir-el-haddadi",
            "shortName": "M. E. Haddadi",
            "position": "M",
            "jerseyNumber": "23",
            "height": 175,
            "userCount": 3194,
            "id": 350170,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 809913600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "totalLongBalls": 7,
            "goalAssist": 0,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "penaltySave": 1,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": -0.1837
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 24,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 46,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 74,
            "accuratePass": 66,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 4,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0335,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 79,
            "accuratePass": 67,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0603494
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 78,
            "touches": 63,
            "rating": 6.3,
            "possessionLostCtrl": 19,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00978168
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 47,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 7,
            "totalContest": 2,
            "wonContest": 2,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0130343
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 63,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 86,
            "rating": 6.5,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0226,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.106423
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 78,
            "touches": 37,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0836656
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 66,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0143131
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 3,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.5729,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.146602
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 6,
            "aerialWon": 6,
            "duelLost": 10,
            "duelWon": 10,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2442,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.102347
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "minutesPlayed": 25,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00679505
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 33,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00517841
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 2,
            "minutesPlayed": 12,
            "touches": 7,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0552118
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 12,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0088,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0109591
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "dispossessed": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 11,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0577057
        },
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Daley Sinkgraven",
            "slug": "daley-sinkgraven",
            "shortName": "D. Sinkgraven",
            "position": "D",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 274,
            "id": 377206,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Aboubacar Bassinga",
            "firstName": "Aboubacar",
            "lastName": "Bassinga",
            "slug": "aboubacar-bassinga",
            "shortName": "A. Bassinga",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 77,
            "id": 1636036,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121212800,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Las Palmas"
    }
]
[
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 22,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "interceptionWon": 1,
            "goodHighClaim": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 49,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.9,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.0387528
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 74,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 8.2,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.2,
                "alternative": null
            },
            "expectedAssists": 0.034031
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 79,
            "totalLongBalls": 8,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 5,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 7.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.199,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0560609
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 57,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "dispossessed": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.8,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.198839
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 55,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 8.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0194,
            "keyPass": 2,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.0738642
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 90,
            "accuratePass": 86,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 103,
            "rating": 7.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0203,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.117663
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 69,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0478524
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 7,
            "totalContest": 4,
            "wonContest": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 69,
            "touches": 64,
            "rating": 7.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.5252,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.429035
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 30,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 7,
            "dispossessed": 3,
            "totalContest": 9,
            "wonContest": 5,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 85,
            "touches": 57,
            "rating": 7.1,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0458,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.480154
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 4,
            "bigChanceMissed": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "totalOffside": 1,
            "minutesPlayed": 86,
            "touches": 46,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.9871,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0245481
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 15,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "minutesPlayed": 21,
            "touches": 19,
            "rating": 8.1,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.2985,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.0124304
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 21,
            "touches": 27,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0176172
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 3,
            "wonContest": 2,
            "minutesPlayed": 12,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 7.4,
            "expectedGoals": 0.0414,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jacobo Naveros",
            "firstName": "",
            "lastName": "",
            "slug": "jacobo-naveros",
            "shortName": "J. Naveros",
            "position": "D",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 1820,
            "id": 1403348,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1104969600,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 23,
            "totalLongBalls": 15,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "goodHighClaim": 2,
            "savedShotsFromInsideTheBox": 6,
            "saves": 6,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": -1.1435
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0141208
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 39,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 48,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0316,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.128139
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 42,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0249102
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 4,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0396667
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 29,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 8,
            "challengeLost": 4,
            "totalContest": 1,
            "totalTackle": 4,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 85,
            "touches": 47,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0343306
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 3,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 29,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0324,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "minutesPlayed": 58,
            "touches": 17,
            "rating": 6.5,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0209,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 8,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 71,
            "touches": 22,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 27,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0959,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0671996
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 31,
            "touches": 17,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1057,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mario Martin",
            "slug": "martin-mario",
            "shortName": "M. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "12",
            "height": 177,
            "userCount": 3084,
            "id": 1154549,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1078444800,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 19,
            "touches": 18,
            "rating": 6.3,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.02,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00530201
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 1,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 19,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "expectedGoals": 0.1145,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 12,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Andr\u00e9 Ferreira",
            "firstName": "",
            "lastName": "",
            "slug": "andre-ferreira",
            "shortName": "A. Ferreira",
            "position": "G",
            "jerseyNumber": "1",
            "height": 193,
            "userCount": 241,
            "id": 788197,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833328000,
            "proposedMarketValueRaw": {
                "value": 740000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Koke Iglesias",
            "slug": "koke",
            "shortName": "Koke",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 42,
            "id": 1184311,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110931200,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "C\u00e9sar de la Hoz",
            "firstName": "",
            "lastName": "",
            "slug": "cesar-de-la-hoz",
            "shortName": "C. de la Hoz",
            "position": "M",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 49,
            "id": 233328,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701913600,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Valladolid"
    }
]
[
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 13,
            "totalLongBalls": 21,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 12,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 8,
            "totalContest": 6,
            "wonContest": 4,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.3,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0266,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.00651464
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.008064
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 23,
            "totalLongBalls": 21,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 6,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.8,
            "possessionLostCtrl": 28,
            "expectedGoals": 0.0265,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0156349
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 15,
            "totalLongBalls": 9,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 6.9,
            "possessionLostCtrl": 20,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.193267
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 11,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 6,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.6,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0043,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0726145
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 1,
            "totalClearance": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0441446
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 8,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 25,
            "rating": 6.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.035,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00602059
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0705,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00705527
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 12,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 4,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 74,
            "touches": 38,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.1588,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00526651
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 5,
            "duelLost": 11,
            "duelWon": 13,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 6,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.114,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0604058
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 4,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 24,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0500583
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 10,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0474,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00952898
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 16,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0391436
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "totalContest": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Berrocal",
            "slug": "juan-berrocal",
            "shortName": "J. Berrocal",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 88,
            "id": 851226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918172800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 9,
            "totalLongBalls": 23,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.0121
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 12,
            "totalLongBalls": 10,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 11,
            "duelWon": 10,
            "challengeLost": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.8,
            "possessionLostCtrl": 26,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.010066
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 24,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 8,
            "challengeLost": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0142291
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 19,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 4,
            "totalClearance": 9,
            "outfielderBlock": 2,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 21,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0143962
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0079596
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 49,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0115926
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 29,
            "rating": 6.3,
            "possessionLostCtrl": 16,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.010962
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 63,
            "touches": 36,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.209,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0296158
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 9,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 85,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0156,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "fouls": 1,
            "totalOffside": 3,
            "minutesPlayed": 72,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0381681
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00c1lvaro Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "alvaro-garcia",
            "shortName": "\u00c1. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "18",
            "height": 168,
            "userCount": 723,
            "id": 345111,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 720144000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 27,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 27,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0196,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0136904
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 18,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 18,
            "touches": 8,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 6.8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Augusto Batalla",
            "slug": "augusto-batalla",
            "shortName": "A. Batalla",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 735,
            "id": 358910,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830822400,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Marco de las Sias",
            "slug": "marco-de-las-sias",
            "shortName": "M. d. l. S\u00edas",
            "position": "D",
            "jerseyNumber": "26",
            "userCount": 26,
            "id": 1893146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1135814400
        },
        "teamId": 43756,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pelayo Fern\u00e1ndez",
            "firstName": "",
            "lastName": "",
            "slug": "pelayo-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "27",
            "height": 193,
            "userCount": 220,
            "id": 1139724,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051574400,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ra\u00fal de Tom\u00e1s",
            "firstName": "",
            "lastName": "",
            "slug": "raul-de-tomas",
            "shortName": "R. de Tom\u00e1s",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 1267,
            "id": 138387,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 782352000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 16,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "saves": 2,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0741,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.4685
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 28,
            "totalLongBalls": 6,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 87,
            "touches": 42,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00867349
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Marash Kumbulla",
            "slug": "marash-kumbulla",
            "shortName": "M. Kumbulla",
            "position": "D",
            "jerseyNumber": "4",
            "height": 191,
            "userCount": 1565,
            "id": 893642,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949968000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 37,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 26,
            "totalLongBalls": 14,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.7,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0386458
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 7,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "blockedScoringAttempt": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 87,
            "touches": 39,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.1344,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.024346
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 83,
            "touches": 36,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.4711,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0354845
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0244923
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "fouls": 5,
            "minutesPlayed": 83,
            "touches": 19,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0112137
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 2,
            "wasFouled": 1,
            "minutesPlayed": 68,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0219452
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 7,
            "bigChanceCreated": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "totalClearance": 4,
            "wasFouled": 7,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.8318,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00538027
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 20,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.2736,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.196903
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 22,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0472133
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 16,
            "touches": 13,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0117729
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 16,
            "touches": 6,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "minutesPlayed": 12,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "wasFouled": 2,
            "minutesPlayed": 12,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.454
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Hamari Traor\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "hamari-traore",
            "shortName": "H. Traor\u00e9",
            "position": "D",
            "jerseyNumber": "18",
            "height": 175,
            "userCount": 3598,
            "id": 362014,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696470400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0645\u0627\u0631\u064a \u062a\u0631\u0627\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062a\u0631\u0627\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 50,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 72,
            "rating": 7,
            "possessionLostCtrl": 9,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.109126
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 61,
            "accuratePass": 51,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 2,
            "totalClearance": 3,
            "clearanceOffLine": 1,
            "outfielderBlock": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 7.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.00718682
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 83,
            "accuratePass": 74,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "fouls": 5,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0901,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00843142
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 43,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0373066
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 62,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 1,
            "totalClearance": 5,
            "interceptionWon": 4,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.3,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0246682
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 55,
            "accuratePass": 46,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.6,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1035,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.321169
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 10,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 4,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 58,
            "rating": 6.3,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.3148,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0531023
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 47,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0688,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0396769
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 5,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "wasFouled": 4,
            "totalOffside": 1,
            "minutesPlayed": 86,
            "touches": 34,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0098,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0288095
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.102733
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 13,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1006,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 2,
            "totalTackle": 1,
            "minutesPlayed": 24,
            "touches": 14,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 23,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00524332
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "totalContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 16,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 1,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Egoitz Arana",
            "firstName": "Egoitz Arana",
            "lastName": "",
            "slug": "egoitz-arana",
            "shortName": "E. Arana",
            "position": "G",
            "jerseyNumber": "13",
            "height": 197,
            "userCount": 7,
            "id": 1170459,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014076800,
            "proposedMarketValueRaw": {
                "value": 54000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0646\u0627 \u060c \u0625\u064a\u062c\u0648\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0625\u064a\u062c\u0648\u064a\u062a\u0632"
                }
            }
        },
        "teamId": 24360,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Urko Gonz\u00e1lez",
            "slug": "urko-gonzalez",
            "shortName": "U. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 131,
            "id": 1064009,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985046400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Sociedad"
    }
]
[
    {
        "player": {
            "name": "Marc-Andr\u00e9 ter Stegen",
            "firstName": "",
            "lastName": "",
            "slug": "marc-andre-ter-stegen",
            "shortName": "M.-A ter Stegen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 73119,
            "id": 88625,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 704592000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 27,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalClearance": 3,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.2,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": -0.1929
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 50,
            "totalLongBalls": 8,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0951278
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 88,
            "accuratePass": 82,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 93,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0149618
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 98,
            "accuratePass": 91,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 1,
            "duelWon": 6,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 104,
            "rating": 7.3,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0489921
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 45,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 89,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0291455
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Bernal",
            "slug": "marc-bernal",
            "shortName": "M. Bernal",
            "position": "M",
            "jerseyNumber": "28",
            "height": 191,
            "userCount": 14917,
            "id": 1526618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1180137600,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 51,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "duelLost": 6,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 83,
            "touches": 58,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0362199
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 46,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 8,
            "possessionLostCtrl": 11,
            "keyPass": 5,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.407095
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 27,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 8,
            "duelWon": 8,
            "challengeLost": 1,
            "totalContest": 7,
            "wonContest": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 3,
            "minutesPlayed": 89,
            "touches": 60,
            "rating": 7.4,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0545,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0712705
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 35,
            "totalLongBalls": 7,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 8.6,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.5009,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8.6,
                "alternative": null
            },
            "expectedAssists": 0.427142
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "goalAssist": 0,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 3,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 63,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0288,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0281402
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "bigChanceMissed": 3,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 2,
            "goals": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 1.2448,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0746857
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferm\u00edn L\u00f3pez",
            "firstName": "Ferm\u00edn L\u00f3pez",
            "slug": "fermin-lopez",
            "shortName": "F. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 176,
            "userCount": 54696,
            "id": 1153270,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052611200,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 1
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 1,
            "touches": 3,
            "possessionLostCtrl": 2
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "\u00c1lex Valle",
            "firstName": "",
            "lastName": "",
            "slug": "valle-alex",
            "shortName": "\u00c1. Valle",
            "position": "D",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 4044,
            "id": 1142238,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082851200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Gomez, Alex Valle"
                },
                "shortNameTranslation": {
                    "ar": "A. V. Gomez"
                }
            }
        },
        "teamId": 2352,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 14,
            "totalLongBalls": 22,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "punches": 1,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00597797,
            "goalsPrevented": -0.3368
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.3,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00597081
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelWon": 3,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00635229
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 30,
            "totalLongBalls": 11,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 4,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0768,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.138707
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 20,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 3,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 78,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0391,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 63,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.028541
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 2,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 3,
            "penaltyWon": 1,
            "minutesPlayed": 72,
            "touches": 31,
            "rating": 7.3,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0249,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.074232
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 62,
            "touches": 28,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.7884,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0204278
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 3,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.7,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0958,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.239668
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 9,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "totalOffside": 2,
            "minutesPlayed": 78,
            "touches": 25,
            "rating": 6.4,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0138763
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 5,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 27,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Malcom Ares",
            "firstName": "",
            "lastName": "",
            "slug": "malcom-ares",
            "shortName": "M. Ares",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 334,
            "id": 1391487,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002844800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0648 \u060c \u0645\u0627\u0644\u0643\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0644\u0643\u0648\u0645"
                }
            }
        },
        "teamId": 2815,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "minutesPlayed": 18,
            "touches": 13,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0224442
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 9,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "totalContest": 1,
            "minutesPlayed": 12,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oier Gastesi",
            "slug": "oier-gastesi",
            "shortName": "O. Gastesi",
            "position": "G",
            "jerseyNumber": "1",
            "height": 190,
            "userCount": 27,
            "id": 1391376,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1067472000,
            "proposedMarketValueRaw": {
                "value": 160000,
                "currency": "EUR"
            }
        },
        "teamId": 24324,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Julen Agirrezabala",
            "firstName": "",
            "lastName": "",
            "slug": "julen-agirrezabala",
            "shortName": "J. Agirrezabala",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 791,
            "id": 1014412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 977788800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai Egu\u00edluz",
            "firstName": "",
            "lastName": "",
            "slug": "unai-eguiluz",
            "shortName": "U. Egu\u00edluz",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 73,
            "id": 1391374,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016496000,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00d3scar de Marcos",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-de-marcos",
            "shortName": "\u00d3. de Marcos",
            "position": "D",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 709,
            "id": 52663,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608515200,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Athletic Club"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 8,
            "totalLongBalls": 18,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 2,
            "saves": 1,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": 0.0574
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 59,
            "rating": 6.8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0075,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.148668
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 35,
            "totalLongBalls": 10,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "shotOffTarget": 1,
            "totalClearance": 6,
            "outfielderBlock": 1,
            "interceptionWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.6,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0395,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 23,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 2,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 16,
            "totalLongBalls": 9,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7,
            "possessionLostCtrl": 18,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0167149
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 29,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 6,
            "duelLost": 7,
            "duelWon": 9,
            "challengeLost": 1,
            "dispossessed": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0326,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0104984
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 3,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 44,
            "rating": 7.8,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0783,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0237281
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 2,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.4,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0654,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0276222
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "duelLost": 9,
            "duelWon": 4,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 41,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.2577,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0286323
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 2,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0419,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0258859
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 7,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 2,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 79,
            "touches": 22,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.025,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0136253
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 4,
            "touches": 1
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 10,
            "touches": 8,
            "rating": 6.5,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 14,
            "touches": 5,
            "rating": 6.8,
            "expectedGoals": 0.0206,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Dimitrios Stamatakis",
            "slug": "stamatakis-dimitrios",
            "shortName": "D. Stamatakis",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 89,
            "id": 1163077,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051056000,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24328,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 15,
            "totalLongBalls": 16,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": -0.4042
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 8,
            "accurateCross": 3,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 8,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 3,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 7.2,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0161,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0883762
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 47,
            "totalLongBalls": 10,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 9,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0141009
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 51,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 4,
            "duelWon": 8,
            "totalClearance": 12,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 73,
            "rating": 7.1,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00651029
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 34,
            "totalLongBalls": 9,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 9,
            "accurateCross": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 80,
            "rating": 7.1,
            "possessionLostCtrl": 26,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.698709
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 35,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 5,
            "duelLost": 6,
            "duelWon": 10,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0937,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0971808
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 4,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 62,
            "touches": 40,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00770047
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 85,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.029,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.052304
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 24,
            "rating": 6.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2017,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0162093
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 5,
            "dispossessed": 2,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1135,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0334664
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 8,
            "totalContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 7,
            "fouls": 1,
            "minutesPlayed": 79,
            "touches": 38,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0661,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0121777
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 22,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 28,
            "touches": 31,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0871304
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 7,
            "duelWon": 1,
            "dispossessed": 2,
            "totalContest": 4,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 16,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0072571
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 6.4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.6,
            "expectedGoals": 0.0543,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jan Salas",
            "slug": "jan-salas",
            "shortName": "J. Salas",
            "position": "M",
            "jerseyNumber": "28",
            "height": 182,
            "userCount": 22,
            "id": 1905699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1123632000,
            "proposedMarketValueRaw": {
                "value": 49000,
                "currency": "EUR"
            }
        },
        "teamId": 34997,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Mallorca"
    }
]
[
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 18,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "goalsPrevented": -1.1077
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 66,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 4,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 95,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0557,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00915319
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 83,
            "accuratePass": 75,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0296,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 68,
            "accuratePass": 55,
            "totalLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 5,
            "shotOffTarget": 2,
            "totalClearance": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 77,
            "touches": 77,
            "rating": 6.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1023,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0156409
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 30,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 6.5,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0775,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.190217
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialWon": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 59,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0151567
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Sa\u00fal \u00d1\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "saul-niguez",
            "shortName": "S. \u00d1\u00edguez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 184,
            "userCount": 3687,
            "id": 116955,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785376000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 50,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2575,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0397985
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 71,
            "touches": 35,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0448,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.137031
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 4,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 3,
            "minutesPlayed": 77,
            "touches": 22,
            "rating": 7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.3796,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.100599
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucas Ocampos",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-ocampos",
            "shortName": "L. Ocampos",
            "position": "M",
            "jerseyNumber": "29",
            "height": 187,
            "userCount": 4450,
            "id": 155702,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773884800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0648\u0643\u0627\u0645\u0628\u0648\u0633, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0627\u0648\u0643\u0627\u0645\u0628\u0648\u0633"
                }
            }
        },
        "teamId": 1932,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 86,
            "touches": 54,
            "rating": 6.9,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0470521
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 10,
            "rating": 6.4,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 7,
            "wonContest": 6,
            "minutesPlayed": 19,
            "touches": 24,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00991343
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 6,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 24,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kelechi Iheanacho",
            "firstName": "",
            "lastName": "",
            "slug": "kelechi-iheanacho",
            "shortName": "K. Iheanacho",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 5202,
            "id": 359642,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844300800,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 13,
            "touches": 4,
            "rating": 6.7,
            "expectedGoals": 0.1044,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 14,
            "touches": 8,
            "rating": 6.3,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0513355
        },
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Albert Sambi Lokonga",
            "slug": "albert-sambi-lokonga",
            "shortName": "A. S. Lokonga",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 3063,
            "id": 901892,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 940550400,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 22,
            "totalLongBalls": 15,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "interceptionWon": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 6,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 7.8,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "goalsPrevented": -0.2417
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 29,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 8,
            "challengeLost": 4,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 30,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 6,
            "duelWon": 10,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 37,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 85,
            "touches": 50,
            "rating": 6.2,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00718267
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 25,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 7,
            "challengeLost": 1,
            "totalClearance": 4,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.086386
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 4,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 73,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0231,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 29,
            "totalLongBalls": 6,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 73,
            "touches": 44,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0328729
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 21,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 6.8,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00671689
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 17,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "totalClearance": 1,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.9,
            "possessionLostCtrl": 15,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.41228
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 13,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 65,
            "touches": 28,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.2856,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0118082
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 65,
            "touches": 14,
            "rating": 7.4,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.3276,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.00536362
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 7,
            "duelWon": 2,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 15,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.229,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00845056
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Thierno Barry",
            "slug": "thierno-barry",
            "shortName": "T. Barry",
            "position": "F",
            "jerseyNumber": "15",
            "height": 195,
            "userCount": 2905,
            "id": 1395746,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035158400,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 25,
            "touches": 13,
            "rating": 6.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 3,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 17,
            "touches": 18,
            "rating": 7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0102188
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 17,
            "touches": 11,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0247345
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 3,
            "minutesPlayed": 15,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Luiz J\u00fanior",
            "firstName": "Luiz L\u00facio Reis J\u00fanior",
            "lastName": "",
            "slug": "luiz-junior",
            "shortName": "L. J\u00fanior",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 825,
            "id": 1066603,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 979430400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Logan Costa",
            "slug": "logan-costa",
            "shortName": "L. Costa",
            "position": "D",
            "jerseyNumber": "2",
            "height": 188,
            "userCount": 670,
            "id": 911853,
            "country": {
                "alpha2": "CV",
                "alpha3": "CPV",
                "name": "Cape Verde",
                "slug": "cape-verde"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 986083200,
            "proposedMarketValueRaw": {
                "value": 17500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnau Sol\u00e0",
            "firstName": "",
            "lastName": "",
            "slug": "arnau-sola",
            "shortName": "A. Sol\u00e0",
            "position": "D",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 80,
            "id": 997025,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049414400,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
                }
            }
        },
        "teamId": 24338,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Villarreal"
    }
]
[
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 18,
            "totalLongBalls": 11,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": -0.3439
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 59,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelWon": 5,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 75,
            "touches": 76,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1028,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0140166
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 63,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 4,
            "interceptionWon": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 76,
            "rating": 7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 66,
            "accuratePass": 62,
            "totalLongBalls": 8,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 7,
            "totalClearance": 7,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00756992
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 33,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 2,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0123211
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 54,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 65,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0801556
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.2,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0212,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0385923
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "duelLost": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 49,
            "rating": 7.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1084,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0772533
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 19,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 3,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "wasFouled": 1,
            "minutesPlayed": 87,
            "touches": 45,
            "rating": 8.1,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.9828,
            "keyPass": 3,
            "penaltyMiss": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.210568
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 10,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 3,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 25,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00972171
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 65,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.1051,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0301493
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "fouls": 1,
            "minutesPlayed": 25,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0205115
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 2,
            "totalOffside": 1,
            "minutesPlayed": 24,
            "touches": 5,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalClearance": 5,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 15,
            "touches": 14,
            "rating": 7.4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 12,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marc Vidal",
            "firstName": "",
            "lastName": "",
            "slug": "marc-vidal",
            "shortName": "M. Vidal",
            "position": "G",
            "jerseyNumber": "13",
            "height": 183,
            "userCount": 170,
            "id": 905443,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 950486400,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Vicente Guaita",
            "slug": "vicente-guaita",
            "shortName": "V. Guaita",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 567,
            "id": 32023,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 537235200,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 18,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 1,
            "penaltySave": 1,
            "saves": 2,
            "punches": 1,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0109469,
            "goalsPrevented": -1.1014
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 50,
            "accuratePass": 39,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 2,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 77,
            "touches": 75,
            "rating": 6.6,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0742,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0184965
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 64,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0103108
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 45,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "lastManTackle": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1483,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.18655
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.5,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.0444,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.126072
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rafa Mir",
            "slug": "rafa-mir",
            "shortName": "R. Mir",
            "position": "F",
            "jerseyNumber": "11",
            "height": 189,
            "userCount": 1282,
            "id": 825754,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 866592000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "goalAssist": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 84,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0839,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 69,
            "accuratePass": 61,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 4,
            "dispossessed": 1,
            "bigChanceCreated": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 7.3,
            "possessionLostCtrl": 15,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.199659
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 32,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 61,
            "touches": 48,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0221,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0129644
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 6,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 77,
            "touches": 46,
            "rating": 6.6,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.3935,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.022638
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 50,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0106,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.248653
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 4,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 26,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0546,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0138479
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 3,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "interceptionWon": 2,
            "wasFouled": 2,
            "minutesPlayed": 29,
            "touches": 21,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0112,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00594131
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "minutesPlayed": 13,
            "touches": 22,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.245966
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 11,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 17,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0835,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00928834
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 13,
            "touches": 3,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Alberto Mari",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-mari",
            "shortName": "A. Mar\u00ed",
            "position": "F",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 110,
            "id": 990232,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994809600,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0627\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2815,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 1,
            "fouls": 1,
            "minutesPlayed": 12,
            "touches": 4,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Ra\u00fal Jim\u00e9nez Latorre",
            "slug": "raul-jimenez-latorre",
            "shortName": "R. J. Latorre",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 137,
            "id": 1466122,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1140048000
        },
        "teamId": 72024,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "David Otorbi",
            "firstName": "David Otorbi",
            "slug": "otorbi-david",
            "shortName": "D. Otorbi",
            "position": "F",
            "jerseyNumber": "27",
            "height": 180,
            "userCount": 191,
            "id": 1580022,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1192492800,
            "proposedMarketValueRaw": {
                "value": 465000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    }
]
[
    {
        "player": {
            "name": "Diego Conde",
            "firstName": "",
            "lastName": "",
            "slug": "diego-conde",
            "shortName": "D. Conde",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 469,
            "id": 951008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 909532800,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 27,
            "rating": 6.6,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -1.6174
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Kiko Femen\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "kiko-femenia",
            "shortName": "K. Femen\u00eda",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 411,
            "id": 53739,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 665452800,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 67,
            "accuratePass": 63,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0202504
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ra\u00fal Albiol",
            "firstName": "",
            "lastName": "",
            "slug": "raul-albiol",
            "shortName": "R. Albiol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 190,
            "userCount": 928,
            "id": 3041,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 494640000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 55,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 9,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00680337
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Eric Bailly",
            "firstName": "",
            "lastName": "",
            "slug": "eric-bailly",
            "shortName": "E. Bailly",
            "position": "D",
            "jerseyNumber": "4",
            "height": 187,
            "userCount": 3942,
            "id": 606346,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 766108800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 49,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00907226
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Sergi Cardona",
            "slug": "sergi-cardona",
            "shortName": "S. Cardona",
            "position": "D",
            "jerseyNumber": "23",
            "height": 186,
            "userCount": 818,
            "id": 986245,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 932256000,
            "proposedMarketValueRaw": {
                "value": 6700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 40,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 67,
            "rating": 6.7,
            "possessionLostCtrl": 14,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0567499
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Y\u00e9remy Pino",
            "firstName": "",
            "lastName": "",
            "slug": "yeremy-pino",
            "shortName": "Y. Pino",
            "position": "M",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 2711,
            "id": 984624,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1035072000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "goalAssist": 0,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 3,
            "totalContest": 2,
            "wonContest": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 71,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0957,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.281257
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Dani Parejo",
            "firstName": "",
            "lastName": "",
            "slug": "dani-parejo",
            "shortName": "D. Parejo",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 2134,
            "id": 39182,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 608688000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 55,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 89,
            "touches": 70,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0225783
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Santi Comesa\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "santi-comesana",
            "shortName": "S. Comesa\u00f1a",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 741,
            "id": 843678,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 844473600,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0240178
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Alejandro Baena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-baena",
            "shortName": "A. Baena",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 4634,
            "id": 910031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 995587200,
            "proposedMarketValueRaw": {
                "value": 53000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 24,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 4,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 71,
            "touches": 43,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0491,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.105494
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Gerard Moreno",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-moreno",
            "shortName": "G. Moreno",
            "position": "F",
            "jerseyNumber": "7",
            "height": 180,
            "userCount": 4216,
            "id": 146866,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 71,
            "touches": 39,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0965,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0733125
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnaut Danjuma",
            "slug": "arnaut-danjuma",
            "shortName": "A. Danjuma",
            "position": "F",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 3363,
            "id": 827064,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854668800,
            "proposedMarketValueRaw": {
                "value": 12300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 79,
            "touches": 20,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.4701,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ilias Akhomach",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-akhomach",
            "shortName": "I. Akhomach",
            "position": "M",
            "jerseyNumber": "11",
            "height": 175,
            "userCount": 13721,
            "id": 1089108,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082073600,
            "proposedMarketValueRaw": {
                "value": 13900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 4,
            "wonContest": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 19,
            "touches": 17,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pape Gueye",
            "slug": "pape-gueye",
            "shortName": "P. Gueye",
            "position": "M",
            "jerseyNumber": "18",
            "height": 187,
            "userCount": 8846,
            "id": 879694,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917136000,
            "proposedMarketValueRaw": {
                "value": 7800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "fouls": 2,
            "minutesPlayed": 19,
            "touches": 23,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Nicolas P\u00e9p\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "nicolas-pepe",
            "shortName": "N. P\u00e9p\u00e9",
            "position": "F",
            "jerseyNumber": "19",
            "height": 183,
            "userCount": 12571,
            "id": 593526,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801705600,
            "proposedMarketValueRaw": {
                "value": 9900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0628\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 4,
            "wonContest": 2,
            "shotOffTarget": 2,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 19,
            "touches": 16,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0755,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ayoze P\u00e9rez",
            "slug": "ayoze-perez",
            "shortName": "A. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 3113,
            "id": 345195,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 743385600,
            "proposedMarketValueRaw": {
                "value": 10700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "minutesPlayed": 11,
            "touches": 9,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Ram\u00f3n Terrats",
            "firstName": "Ram\u00f3n Terrats",
            "lastName": "",
            "slug": "ramon-terrats",
            "shortName": "R. Terrats",
            "position": "M",
            "jerseyNumber": "20",
            "height": 179,
            "userCount": 247,
            "id": 1088565,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971827200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
                }
            }
        },
        "teamId": 2819,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 4
        },
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Iker \u00c1lvarez",
            "slug": "iker-alvarez",
            "shortName": "I. \u00c1lvarez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 190,
            "userCount": 176,
            "id": 1005638,
            "country": {
                "alpha2": "AD",
                "alpha3": "AND",
                "name": "Andorra",
                "slug": "andorra"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996019200,
            "proposedMarketValueRaw": {
                "value": 835000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625\u0643\u0631"
                }
            }
        },
        "teamId": 24338,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Arnau Sol\u00e0",
            "firstName": "",
            "lastName": "",
            "slug": "arnau-sola",
            "shortName": "A. Sol\u00e0",
            "position": "D",
            "jerseyNumber": "27",
            "height": 179,
            "userCount": 80,
            "id": 997025,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049414400,
            "proposedMarketValueRaw": {
                "value": 410000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
                }
            }
        },
        "teamId": 24338,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Willy Kambwala",
            "firstName": "Willy Kambwala",
            "slug": "kambwala-willy",
            "shortName": "W. Kambwala",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 2643,
            "id": 1136721,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1093392000,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            }
        },
        "teamId": 2819,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Pau Navarro",
            "slug": "pau-navarro",
            "shortName": "P. Navarro",
            "position": "D",
            "jerseyNumber": "26",
            "height": 185,
            "userCount": 75,
            "id": 1525863,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1114387200,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24338,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Villarreal"
    },
    {
        "player": {
            "name": "Jan Oblak",
            "firstName": "",
            "lastName": "",
            "slug": "jan-oblak",
            "shortName": "J. Oblak",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 10224,
            "id": 69768,
            "country": {
                "alpha2": "SI",
                "alpha3": "SVN",
                "name": "Slovenia",
                "slug": "slovenia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 726364800,
            "proposedMarketValueRaw": {
                "value": 30000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "errorLeadToAGoal": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 22,
            "rating": 6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            },
            "goalsPrevented": -1.2443
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "C\u00e9sar Azpilicueta",
            "slug": "cesar-azpilicueta",
            "shortName": "C. Azpilicueta",
            "position": "D",
            "jerseyNumber": "3",
            "height": 178,
            "userCount": 4921,
            "id": 21555,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 620265600,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 92,
            "accuratePass": 84,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 3,
            "totalClearance": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 106,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0571496
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Axel Witsel",
            "firstName": "",
            "lastName": "",
            "slug": "axel-witsel",
            "shortName": "A. Witsel",
            "position": "D",
            "jerseyNumber": "20",
            "height": 186,
            "userCount": 5316,
            "id": 35612,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 600566400,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 28,
            "goalAssist": 0,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Robin Le Normand",
            "firstName": "",
            "lastName": "",
            "slug": "robin-le-normand",
            "shortName": "R. Le Normand",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 3699,
            "id": 787751,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847670400,
            "proposedMarketValueRaw": {
                "value": 38000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 71,
            "accuratePass": 66,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00600787
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Marcos Llorente",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-llorente",
            "shortName": "M. Llorente",
            "position": "M",
            "jerseyNumber": "14",
            "height": 184,
            "userCount": 6576,
            "id": 353138,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791424000,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 7.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0543,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0735944
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Pablo Barrios",
            "firstName": "",
            "lastName": "",
            "slug": "pablo-barrios",
            "shortName": "P. Barrios",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 3128,
            "id": 1142588,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1055635200,
            "proposedMarketValueRaw": {
                "value": 33000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 49,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 74,
            "rating": 7.4,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0469,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.129401
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Koke",
            "firstName": "",
            "lastName": "",
            "slug": "koke",
            "shortName": "Koke",
            "position": "M",
            "jerseyNumber": "6",
            "height": 177,
            "userCount": 4836,
            "id": 84539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694828800,
            "proposedMarketValueRaw": {
                "value": 11000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "totalTackle": 3,
            "ownGoals": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 57,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.14609
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Reinildo Mandava",
            "firstName": "",
            "lastName": "",
            "slug": "reinildo-mandava",
            "shortName": "R. Mandava",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 3526,
            "id": 831424,
            "country": {
                "alpha2": "MZ",
                "alpha3": "MOZ",
                "name": "Mozambique",
                "slug": "mozambique"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 759110400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 54,
            "touches": 42,
            "rating": 6.5,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0122827
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antoine Griezmann",
            "slug": "antoine-griezmann",
            "shortName": "A. Griezmann",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 123633,
            "id": 85859,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 669513600,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 33,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "wasFouled": 1,
            "minutesPlayed": 78,
            "touches": 48,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1268,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0595402
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Samuel Lino",
            "slug": "samuel-lino",
            "shortName": "S. Lino",
            "position": "M",
            "jerseyNumber": "12",
            "height": 178,
            "userCount": 4501,
            "id": 874705,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945907200,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644\u064a\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 11,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 3,
            "totalContest": 4,
            "wonContest": 2,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 3,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.6713,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0330773
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Alexander S\u00f8rloth",
            "slug": "alexander-sorloth",
            "shortName": "A. S\u00f8rloth",
            "position": "F",
            "jerseyNumber": "9",
            "height": 194,
            "userCount": 8934,
            "id": 309078,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818121600,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 15,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1462,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0117813
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
            "firstName": "",
            "lastName": "",
            "slug": "jose-maria-gimenez",
            "shortName": "J. M. Gim\u00e9nez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 4840,
            "id": 325355,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790560000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 40,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 45,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "\u00c1ngel Correa",
            "firstName": "",
            "lastName": "",
            "slug": "angel-correa",
            "shortName": "\u00c1. Correa",
            "position": "F",
            "jerseyNumber": "10",
            "height": 171,
            "userCount": 10815,
            "id": 316152,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794707200,
            "proposedMarketValueRaw": {
                "value": 19700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 9,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 2,
            "totalContest": 3,
            "wonContest": 3,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 45,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0643,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0590228
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Nahuel Molina",
            "slug": "nahuel-molina",
            "shortName": "N. Molina",
            "position": "D",
            "jerseyNumber": "16",
            "height": 175,
            "userCount": 13914,
            "id": 831799,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891820800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 27,
            "goalAssist": 0,
            "totalCross": 3,
            "duelWon": 2,
            "totalTackle": 2,
            "minutesPlayed": 36,
            "touches": 43,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0242965
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo de Paul",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-de-paul",
            "shortName": "R. de Paul",
            "position": "M",
            "jerseyNumber": "5",
            "height": 180,
            "userCount": 41272,
            "id": 249399,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 769737600,
            "proposedMarketValueRaw": {
                "value": 31000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062f. \u0628\u0648\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 26,
            "touches": 31,
            "rating": 6.8,
            "possessionLostCtrl": 5,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00990147
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Juli\u00e1n \u00c1lvarez",
            "firstName": "",
            "lastName": "",
            "slug": "julian-alvarez",
            "shortName": "J. \u00c1lvarez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 170,
            "userCount": 167809,
            "id": 944656,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 73000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "fouls": 2,
            "minutesPlayed": 12,
            "touches": 3,
            "rating": 6.5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Hora\u021biu Moldovan",
            "slug": "horatiu-moldovan",
            "shortName": "H. Moldovan",
            "position": "G",
            "jerseyNumber": "31",
            "height": 182,
            "userCount": 2180,
            "id": 857065,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885254400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0648\u0631\u0627\u062a\u064a\u0648 \u0645\u0648\u0644\u062f\u0648\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u0645\u0648\u0644\u062f\u0648\u0641\u0627\u0646"
                }
            }
        },
        "teamId": 2793,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Antonio Gomis",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-gomis",
            "shortName": "A. Gomis",
            "position": "G",
            "jerseyNumber": "31",
            "height": 191,
            "userCount": 297,
            "id": 1156733,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053388800,
            "proposedMarketValueRaw": {
                "value": 165000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Ilias Kostis",
            "firstName": "",
            "lastName": "",
            "slug": "ilias-kostis",
            "shortName": "I. Kostis",
            "position": "D",
            "jerseyNumber": "5",
            "height": 191,
            "userCount": 585,
            "id": 1145621,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046304000,
            "proposedMarketValueRaw": {
                "value": 270000,
                "currency": "EUR"
            }
        },
        "teamId": 24326,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Javi Gal\u00e1n",
            "slug": "javi-galan",
            "shortName": "J. Gal\u00e1n",
            "position": "D",
            "jerseyNumber": "21",
            "height": 172,
            "userCount": 1602,
            "id": 825133,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 785203200,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c. \u062c\u064a\u0644"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Rodrigo Riquelme",
            "firstName": "",
            "lastName": "",
            "slug": "rodrigo-riquelme",
            "shortName": "R. Riquelme",
            "position": "M",
            "jerseyNumber": "17",
            "height": 174,
            "userCount": 3287,
            "id": 989113,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954633600,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Arthur Vermeeren",
            "firstName": "Arthur Vermeeren",
            "lastName": "",
            "slug": "arthur-vermeeren",
            "shortName": "A. Vermeeren",
            "position": "M",
            "jerseyNumber": "18",
            "height": 180,
            "userCount": 4704,
            "id": 1149127,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107734400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u0631\u062b\u0631 \u0641\u064a\u0631\u0645\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0641\u064a\u0631\u0645\u064a\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 36360,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    },
    {
        "player": {
            "name": "Giuliano Simeone",
            "firstName": "",
            "lastName": "",
            "slug": "giuliano-simeone",
            "shortName": "G. Simeone",
            "position": "F",
            "jerseyNumber": "22",
            "height": 178,
            "userCount": 4158,
            "id": 1099352,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040169600,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2836,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Atl\u00e9tico Madrid"
    }
]
[
    {
        "player": {
            "name": "Karl Hein",
            "firstName": "",
            "lastName": "",
            "slug": "karl-hein",
            "shortName": "K. Hein",
            "position": "G",
            "jerseyNumber": "13",
            "height": 193,
            "userCount": 2800,
            "id": 991591,
            "country": {
                "alpha2": "EE",
                "alpha3": "EST",
                "name": "Estonia",
                "slug": "estonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1018656000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Hein, Karl Jacob"
                },
                "shortNameTranslation": {
                    "ar": "K. J. Hein"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 17,
            "totalLongBalls": 17,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 2,
            "saves": 2,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 7.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": 0.811
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Luis P\u00e9rez",
            "slug": "luis-perez",
            "shortName": "L. P\u00e9rez",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 223,
            "id": 843180,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 791856000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 3,
            "totalClearance": 5,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 78,
            "rating": 7.8,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.216648
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Javi S\u00e1nchez",
            "slug": "javi-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 189,
            "userCount": 348,
            "id": 943713,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 858297600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 37,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 3,
            "bigChanceCreated": 1,
            "totalClearance": 3,
            "fouls": 1,
            "minutesPlayed": 62,
            "touches": 47,
            "rating": 7,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.24672
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Flavien Boyomo",
            "firstName": "",
            "lastName": "",
            "slug": "boyomo-flavien",
            "shortName": "F. Boyomo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 181,
            "userCount": 634,
            "id": 1067582,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002412800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 53,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "totalClearance": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.8,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Lucas Rosa",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-rosa",
            "shortName": "L. Rosa",
            "position": "D",
            "jerseyNumber": "22",
            "height": 177,
            "userCount": 411,
            "id": 970860,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 954720000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Rosa, Lucas Oliveira"
                },
                "shortNameTranslation": {
                    "ar": "L. O. Rosa"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 56,
            "rating": 7,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0442,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.104147
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Amath Ndiaye",
            "slug": "amath-ndiaye",
            "shortName": "A. Ndiaye",
            "position": "F",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 474,
            "id": 845168,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837475200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 70,
            "touches": 29,
            "rating": 7.4,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0341,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0309051
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Kike P\u00e9rez",
            "slug": "kike-perez",
            "shortName": "K. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 184,
            "userCount": 257,
            "id": 857178,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855878400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 40,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 7,
            "duelWon": 7,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 3,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 82,
            "touches": 65,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0214,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.202651
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Eray C\u00f6mert",
            "slug": "eray-comert",
            "shortName": "E. C\u00f6mert",
            "position": "D",
            "jerseyNumber": "15",
            "height": 183,
            "userCount": 500,
            "id": 814023,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886550400,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 21,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 4,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "minutesPlayed": 82,
            "touches": 39,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2087,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Selim Amallah",
            "firstName": "",
            "lastName": "",
            "slug": "amallah-selim",
            "shortName": "S. Amallah",
            "position": "M",
            "jerseyNumber": "21",
            "height": 187,
            "userCount": 8869,
            "id": 801211,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848016000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 19,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 2,
            "aerialLost": 2,
            "duelLost": 5,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 69,
            "touches": 40,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1807,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0622481
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Moro",
            "firstName": "",
            "lastName": "",
            "slug": "raul-moro",
            "shortName": "R. Moro",
            "position": "F",
            "jerseyNumber": "11",
            "height": 169,
            "userCount": 822,
            "id": 980383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1039046400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "aerialLost": 1,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 8,
            "wonContest": 5,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 51,
            "rating": 7.6,
            "possessionLostCtrl": 25,
            "expectedGoals": 0.051,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0974731
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Mamadou Sylla",
            "slug": "mamadou-sylla",
            "shortName": "M. Sylla",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 475,
            "id": 793761,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764121600,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "fouls": 1,
            "totalOffside": 4,
            "minutesPlayed": 90,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.2605,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0189122
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stanko Juri\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "juric-stanko",
            "shortName": "S. Juri\u0107",
            "position": "M",
            "jerseyNumber": "20",
            "height": 189,
            "userCount": 507,
            "id": 921417,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840153600,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 28,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Iv\u00e1n S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "ivan-sanchez",
            "shortName": "I. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 168,
            "userCount": 220,
            "id": 142018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 20,
            "touches": 9,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "V\u00edctor Meseguer",
            "slug": "victor-meseguer",
            "shortName": "V. Meseguer",
            "position": "M",
            "jerseyNumber": "4",
            "height": 184,
            "userCount": 129,
            "id": 1010335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 21,
            "touches": 10,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00540653
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "David Torres",
            "firstName": "",
            "lastName": "",
            "slug": "david-torres",
            "shortName": "D. Torres",
            "position": "D",
            "jerseyNumber": "3",
            "height": 182,
            "userCount": 154,
            "id": 1214359,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1046822400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "totalClearance": 2,
            "minutesPlayed": 8,
            "touches": 4,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Chuky",
            "firstName": "",
            "lastName": "",
            "slug": "chuky",
            "shortName": "Chuky",
            "position": "M",
            "jerseyNumber": "28",
            "userCount": 66,
            "id": 1137584,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083196800,
            "proposedMarketValueRaw": {
                "value": 545000,
                "currency": "EUR"
            }
        },
        "teamId": 2831,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "dispossessed": 1,
            "totalOffside": 1,
            "minutesPlayed": 8,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Arnau Raf\u00fas",
            "firstName": "",
            "lastName": "",
            "slug": "arnau-rafus",
            "shortName": "A. Raf\u00fas",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 45,
            "id": 1142235,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051401600,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Ra\u00fal Chasco",
            "firstName": "",
            "lastName": "",
            "slug": "raul-chasco",
            "shortName": "R. Chasco",
            "position": "D",
            "jerseyNumber": "30",
            "height": 177,
            "userCount": 33,
            "id": 1182710,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063411200,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Koke Iglesias",
            "slug": "koke",
            "shortName": "Koke",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 42,
            "id": 1184311,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1110931200,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 24361,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Darwin Mach\u00eds",
            "firstName": "",
            "lastName": "",
            "slug": "darwin-machis",
            "shortName": "D. Mach\u00eds",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 2073,
            "id": 252863,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 729043200,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "C\u00e9sar de la Hoz",
            "firstName": "",
            "lastName": "",
            "slug": "cesar-de-la-hoz",
            "shortName": "C. de la Hoz",
            "position": "M",
            "jerseyNumber": "16",
            "height": 179,
            "userCount": 49,
            "id": 233328,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701913600,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u064a\u0632\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Marcos Andr\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "marcos-andre",
            "shortName": "M. Andr\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 494,
            "id": 880157,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 845769600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Stipe Biuk",
            "slug": "stipe-biuk",
            "shortName": "S. Biuk",
            "position": "F",
            "jerseyNumber": "27",
            "height": 184,
            "userCount": 2567,
            "id": 965019,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1040860800,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            }
        },
        "teamId": 2036,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Real Valladolid"
    },
    {
        "player": {
            "name": "Joan Garc\u00eda",
            "slug": "joan-garcia",
            "shortName": "J. Garc\u00eda",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 857,
            "id": 930267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 988934400,
            "proposedMarketValueRaw": {
                "value": 10300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 22,
            "totalLongBalls": 12,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.8561
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Tejero",
            "slug": "alvaro-tejero",
            "shortName": "\u00c1. Tejero",
            "position": "D",
            "jerseyNumber": "12",
            "height": 173,
            "userCount": 287,
            "id": 826679,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 837820800,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 18,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 70,
            "touches": 38,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0488,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.106909
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar El Hilali",
            "slug": "omar-el-hilali",
            "shortName": "O. E. Hilali",
            "position": "D",
            "jerseyNumber": "23",
            "height": 183,
            "userCount": 1499,
            "id": 1064026,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063324800,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 38,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 3,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00551192
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Sergi G\u00f3mez",
            "slug": "sergi-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 207,
            "id": 125625,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 701740800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 66,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 77,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.268,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00873332
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Leandro Cabrera",
            "slug": "leandro-cabrera",
            "shortName": "L. Cabrera",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 372,
            "id": 81992,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 677116800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 87,
            "accuratePass": 66,
            "totalLongBalls": 13,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 6,
            "duelLost": 2,
            "duelWon": 6,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 90,
            "touches": 96,
            "rating": 7.1,
            "possessionLostCtrl": 23,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0510632
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Carlos Romero",
            "firstName": "Carlos Romero",
            "lastName": "",
            "slug": "carlos-romero",
            "shortName": "C. Romero",
            "position": "D",
            "jerseyNumber": "22",
            "userCount": 247,
            "id": 1396048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1004313600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 32,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.4,
            "possessionLostCtrl": 16,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0270248
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pere Milla",
            "firstName": "",
            "lastName": "",
            "slug": "pere-milla",
            "shortName": "P. Milla",
            "position": "F",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 207,
            "id": 175185,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 717206400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 12,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 3,
            "wasFouled": 2,
            "minutesPlayed": 57,
            "touches": 25,
            "rating": 6.3,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0134465
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jos\u00e9 Gragera",
            "slug": "jose-gragera",
            "shortName": "J. Gragera",
            "position": "M",
            "jerseyNumber": "15",
            "height": 186,
            "userCount": 147,
            "id": 966940,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958262400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 47,
            "accuratePass": 42,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 3,
            "minutesPlayed": 78,
            "touches": 56,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Pol Lozano",
            "firstName": "",
            "lastName": "",
            "slug": "pol-lozano",
            "shortName": "P. Lozano",
            "position": "M",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 168,
            "id": 826010,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939168000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 24,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 31,
            "rating": 6.5,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alejo V\u00e9liz",
            "firstName": "Alejo Veliz",
            "lastName": "",
            "slug": "alejo-veliz",
            "shortName": "A. V\u00e9liz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 187,
            "userCount": 3863,
            "id": 1116987,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063929600,
            "proposedMarketValueRaw": {
                "value": 9400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 2,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 70,
            "touches": 30,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0493,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Javi Puado",
            "firstName": "",
            "lastName": "",
            "slug": "javi-puado",
            "shortName": "J. Puado",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 1095,
            "id": 891511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896054400,
            "proposedMarketValueRaw": {
                "value": 7500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 22,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 3,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1041,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0156015
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Alex Kr\u00e1l",
            "firstName": "",
            "lastName": "",
            "slug": "alex-kral",
            "shortName": "A. Kr\u00e1l",
            "position": "M",
            "jerseyNumber": "20",
            "height": 185,
            "userCount": 697,
            "id": 825740,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895536000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0643\u0631\u0627\u0644"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 33,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0316,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Irvin Cardona",
            "firstName": "",
            "lastName": "",
            "slug": "irvin-cardona",
            "shortName": "I. Cardona",
            "position": "F",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 363,
            "id": 605552,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 870998400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 10,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0931,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0207648
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Jofre Carreras",
            "firstName": "",
            "lastName": "",
            "slug": "jofre",
            "shortName": "J. Carreras",
            "position": "M",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 277,
            "id": 1019236,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 992736000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelWon": 5,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 20,
            "touches": 18,
            "rating": 7.2,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0220227
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Antoniu Roca",
            "firstName": "",
            "lastName": "",
            "slug": "antoniu-roca",
            "shortName": "A. Roca",
            "position": "F",
            "jerseyNumber": "31",
            "userCount": 51,
            "id": 1099344,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031184000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 2814,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 20,
            "touches": 11,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0149,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0121732
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "\u00c1lvaro Aguado",
            "slug": "alvaro-aguado",
            "shortName": "\u00c1. Aguado",
            "position": "M",
            "jerseyNumber": "18",
            "height": 174,
            "userCount": 181,
            "id": 916136,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 830908800,
            "proposedMarketValueRaw": {
                "value": 3000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "duelWon": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 12,
            "touches": 16,
            "rating": 7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0537,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0367382
        },
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Pacheco",
            "slug": "fernando-pacheco",
            "shortName": "F. Pacheco",
            "position": "G",
            "jerseyNumber": "13",
            "height": 186,
            "userCount": 207,
            "id": 144501,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706147200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Angel Fortuno",
            "slug": "fortuno-angel",
            "shortName": "A. Fortuno",
            "position": "G",
            "jerseyNumber": "33",
            "height": 183,
            "userCount": 28,
            "id": 1082734,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978307200,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Brian Oliv\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "brian-olivan",
            "shortName": "B. Oliv\u00e1n",
            "position": "D",
            "jerseyNumber": "14",
            "height": 179,
            "userCount": 149,
            "id": 351500,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 765158400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Fernando Calero",
            "slug": "fernando-calero",
            "shortName": "F. Calero",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 120,
            "id": 857205,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 811036800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Rafael Bauza",
            "firstName": "Rafael Bauza",
            "slug": "rafael-bauza",
            "shortName": "R. Bauza",
            "position": "M",
            "jerseyNumber": "35",
            "height": 183,
            "userCount": 32,
            "id": 1841365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1107043200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Salvi S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "salvi-sanchez",
            "shortName": "S. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 78,
            "id": 811493,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 670291200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2814,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    },
    {
        "player": {
            "name": "Omar Sadik",
            "firstName": "Omar Sadik",
            "lastName": "",
            "slug": "sadik-omar",
            "shortName": "O. Sadik",
            "position": "F",
            "jerseyNumber": "32",
            "userCount": 337,
            "id": 1126850,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1079913600,
            "proposedMarketValueRaw": {
                "value": 290000,
                "currency": "EUR"
            }
        },
        "teamId": 37055,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Espanyol"
    }
]
[
    {
        "player": {
            "name": "Dominik Greif",
            "slug": "dominik-greif",
            "shortName": "D. Greif",
            "position": "G",
            "jerseyNumber": "1",
            "height": 197,
            "userCount": 464,
            "id": 791046,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 860284800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u063a\u0631\u064a\u0641"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 6,
            "totalLongBalls": 12,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 5,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 22,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "goalsPrevented": 0.2316
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Pablo Maffeo",
            "slug": "pablo-maffeo",
            "shortName": "P. Maffeo",
            "position": "D",
            "jerseyNumber": "23",
            "height": 173,
            "userCount": 2011,
            "id": 788216,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868665600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 8,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 5,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 54,
            "rating": 6.5,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0911744
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Martin Valjent",
            "slug": "martin-valjent",
            "shortName": "M. Valjent",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 555,
            "id": 300522,
            "country": {
                "alpha2": "SK",
                "alpha3": "SVK",
                "name": "Slovakia",
                "slug": "slovakia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 818640000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 6,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio Ra\u00edllo",
            "slug": "antonio-raillo",
            "shortName": "A. Ra\u00edllo",
            "position": "D",
            "jerseyNumber": "21",
            "height": 186,
            "userCount": 861,
            "id": 807116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 686880000,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 2,
            "totalClearance": 2,
            "outfielderBlock": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.101988
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Johan Mojica",
            "slug": "johan-mojica",
            "shortName": "J. Mojica",
            "position": "D",
            "jerseyNumber": "22",
            "height": 185,
            "userCount": 2892,
            "id": 344847,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714355200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 38,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 6,
            "wonContest": 4,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 7.1,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0216,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0369277
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sergi Darder",
            "slug": "sergi-darder",
            "shortName": "S. Darder",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 928,
            "id": 110783,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756518400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 21,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 72,
            "touches": 35,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0365114
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Omar Mascarell",
            "slug": "omar-mascarell",
            "shortName": "O. Mascarell",
            "position": "M",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 375,
            "id": 255999,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 728611200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 41,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "totalClearance": 3,
            "interceptionWon": 3,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 52,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0106771
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Sam\u00fa Costa",
            "slug": "samuel-costa",
            "shortName": "S. Costa",
            "position": "M",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 1186,
            "id": 988351,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633\u0627\u0645\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 36,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 16,
            "duelWon": 9,
            "challengeLost": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 7,
            "fouls": 7,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0444,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0563636
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Takuma Asano",
            "firstName": "",
            "lastName": "",
            "slug": "takuma-asano",
            "shortName": "T. Asano",
            "position": "F",
            "jerseyNumber": "11",
            "height": 171,
            "userCount": 2234,
            "id": 309546,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 784425600,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "minutesPlayed": 72,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0196,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0200825
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Vedat Muriqi",
            "slug": "vedat-muriqi",
            "shortName": "V. Muriqi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 194,
            "userCount": 3971,
            "id": 310874,
            "country": {
                "alpha2": "XK",
                "alpha3": "XKX",
                "name": "Kosovo",
                "slug": "kosovo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 767145600,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 5,
            "aerialWon": 6,
            "duelLost": 10,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 3,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 3,
            "goals": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.3,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.4381,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0124106
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Dani Rodr\u00edguez",
            "slug": "dani-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 693,
            "id": 349526,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 581558400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "totalCross": 5,
            "accurateCross": 2,
            "duelWon": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "wasFouled": 1,
            "minutesPlayed": 67,
            "touches": 33,
            "rating": 7.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1367,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0871779
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Antonio S\u00e1nchez",
            "slug": "antonio-sanchez",
            "shortName": "A. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 226,
            "id": 949722,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861667200,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "duelLost": 1,
            "shotOffTarget": 2,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 23,
            "touches": 10,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.3774,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Manu Morlanes",
            "firstName": "",
            "lastName": "",
            "slug": "manu-morlanes",
            "shortName": "M. Morlanes",
            "position": "M",
            "jerseyNumber": "8",
            "height": 178,
            "userCount": 394,
            "id": 826004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 916099200,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "minutesPlayed": 18,
            "touches": 15,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0264775
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Cyle Larin",
            "slug": "cyle-larin",
            "shortName": "C. Larin",
            "position": "F",
            "jerseyNumber": "17",
            "height": 187,
            "userCount": 1556,
            "id": 790179,
            "country": {
                "alpha2": "CA",
                "alpha3": "CAN",
                "name": "Canada",
                "slug": "canada"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 798076800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 7,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 18,
            "touches": 15,
            "rating": 6.6,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Jos\u00e9 Copete",
            "firstName": "",
            "lastName": "",
            "slug": "jose-copete",
            "shortName": "J. Copete",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 259,
            "id": 913695,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 939513600,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "minutesPlayed": 1,
            "touches": 5
        },
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Leo Rom\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "leo-roman",
            "shortName": "L. Rom\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 189,
            "userCount": 249,
            "id": 1131909,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 962841600,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Iv\u00e1n Cu\u00e9llar",
            "slug": "ivan-cuellar",
            "shortName": "I. Cu\u00e9llar",
            "position": "G",
            "jerseyNumber": "25",
            "height": 187,
            "userCount": 102,
            "id": 19013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 454464000,
            "proposedMarketValueRaw": {
                "value": 110000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Toni Lato",
            "slug": "toni-lato",
            "shortName": "T. Lato",
            "position": "D",
            "jerseyNumber": "3",
            "height": 173,
            "userCount": 265,
            "id": 828239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 880070400,
            "proposedMarketValueRaw": {
                "value": 3300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0644\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Siebe Van Der Heyden",
            "firstName": "",
            "lastName": "",
            "slug": "siebe-van-der-heyden",
            "shortName": "S. V. D. Heyden",
            "position": "D",
            "jerseyNumber": "4",
            "height": 185,
            "userCount": 238,
            "id": 842164,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 896486400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Mateu Morey",
            "firstName": "",
            "lastName": "",
            "slug": "mateu-morey",
            "shortName": "M. Morey",
            "position": "D",
            "jerseyNumber": "2",
            "height": 171,
            "userCount": 671,
            "id": 879543,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951955200,
            "proposedMarketValueRaw": {
                "value": 825000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Marc Domenech",
            "firstName": "Marc Domenech",
            "slug": "marc-domenech",
            "shortName": "M. Domenech",
            "position": "M",
            "jerseyNumber": "30",
            "userCount": 48,
            "id": 1914318,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1136073600,
            "proposedMarketValueRaw": {
                "value": 535000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Daniel Luna",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-luna",
            "shortName": "D. Luna",
            "position": "M",
            "jerseyNumber": "33",
            "height": 178,
            "userCount": 346,
            "id": 1018516,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052265600,
            "proposedMarketValueRaw": {
                "value": 285000,
                "currency": "EUR"
            }
        },
        "teamId": 2826,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Abd\u00f3n Prats",
            "slug": "abdon-prats",
            "shortName": "A. Prats",
            "position": "F",
            "jerseyNumber": "9",
            "height": 181,
            "userCount": 319,
            "id": 146852,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 724550400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0639\u0628\u062f\u0648\u0646"
                }
            }
        },
        "teamId": 2826,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Mallorca"
    },
    {
        "player": {
            "name": "Thibaut Courtois",
            "firstName": "",
            "lastName": "",
            "slug": "thibaut-courtois",
            "shortName": "T. Courtois",
            "position": "G",
            "jerseyNumber": "1",
            "height": 200,
            "userCount": 120688,
            "id": 70988,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705542400,
            "proposedMarketValueRaw": {
                "value": 24000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 21,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "punches": 1,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "goalsPrevented": -0.394
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Daniel Carvajal",
            "slug": "daniel-carvajal",
            "shortName": "D. Carvajal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 173,
            "userCount": 89435,
            "id": 138572,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 695088000,
            "proposedMarketValueRaw": {
                "value": 11600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 44,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 68,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0318211
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "\u00c9der Milit\u00e3o",
            "slug": "eder-militao",
            "shortName": "\u00c9. Milit\u00e3o",
            "position": "D",
            "jerseyNumber": "3",
            "height": 186,
            "userCount": 91447,
            "id": 822519,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 885081600,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 58,
            "totalLongBalls": 5,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 5,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.0203,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0115748
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Antonio R\u00fcdiger",
            "slug": "antonio-rudiger",
            "shortName": "A. R\u00fcdiger",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 116142,
            "id": 142622,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731116800,
            "proposedMarketValueRaw": {
                "value": 26000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 64,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 86,
            "rating": 7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0189,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.00793408
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Ferland Mendy",
            "firstName": "",
            "lastName": "",
            "slug": "ferland-mendy",
            "shortName": "F. Mendy",
            "position": "D",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 47774,
            "id": 792073,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 802569600,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 64,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalClearance": 4,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0185238
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Federico Valverde",
            "slug": "federico-valverde",
            "shortName": "F. Valverde",
            "position": "M",
            "jerseyNumber": "8",
            "height": 181,
            "userCount": 205032,
            "id": 831808,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901065600,
            "proposedMarketValueRaw": {
                "value": 126000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 68,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelWon": 4,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 7,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0924121
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Aur\u00e9lien Tchouam\u00e9ni",
            "slug": "aurelien-tchouameni",
            "shortName": "A. Tchouam\u00e9ni",
            "position": "M",
            "jerseyNumber": "14",
            "height": 188,
            "userCount": 107298,
            "id": 859025,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948931200,
            "proposedMarketValueRaw": {
                "value": 104000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 58,
            "accuratePass": 57,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 6,
            "challengeLost": 1,
            "totalClearance": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 64,
            "rating": 7.1,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0152522
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jude Bellingham",
            "slug": "jude-bellingham",
            "shortName": "J. Bellingham",
            "position": "M",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 476871,
            "id": 991011,
            "country": {
                "alpha2": "EN",
                "alpha3": "ENG",
                "name": "England",
                "slug": "england"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056844800,
            "proposedMarketValueRaw": {
                "value": 170000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062c\u0648\u062f"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 72,
            "accuratePass": 62,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 6,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 88,
            "touches": 87,
            "rating": 7.6,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.18994
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Rodrygo",
            "firstName": "",
            "lastName": "",
            "slug": "rodrygo",
            "shortName": "Rodrygo",
            "position": "F",
            "jerseyNumber": "11",
            "height": 174,
            "userCount": 317094,
            "id": 910536,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 117000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 59,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 5,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 8.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1572,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.1,
                "alternative": null
            },
            "expectedAssists": 0.122976
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Kylian Mbapp\u00e9",
            "slug": "kylian-mbappe",
            "shortName": "K. Mbapp\u00e9",
            "position": "F",
            "jerseyNumber": "9",
            "height": 178,
            "userCount": 611826,
            "id": 826643,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 914112000,
            "proposedMarketValueRaw": {
                "value": 191000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0645\u0628\u0627\u0628"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 7.5,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.299,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0866957
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Vin\u00edcius J\u00fanior",
            "slug": "vinicius-junior",
            "shortName": "Vin\u00edcius Jr.",
            "position": "F",
            "jerseyNumber": "7",
            "height": 176,
            "userCount": 519891,
            "id": 868812,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 963360000,
            "proposedMarketValueRaw": {
                "value": 208000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 31,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 11,
            "duelWon": 5,
            "dispossessed": 5,
            "totalContest": 8,
            "wonContest": 3,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "minutesPlayed": 88,
            "touches": 64,
            "rating": 7.2,
            "possessionLostCtrl": 24,
            "expectedGoals": 0.06,
            "keyPass": 6,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.421279
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Luka Modri\u0107",
            "slug": "luka-modric",
            "shortName": "L. Modri\u0107",
            "position": "M",
            "jerseyNumber": "10",
            "height": 173,
            "userCount": 253556,
            "id": 15466,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 495072000,
            "proposedMarketValueRaw": {
                "value": 6600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 36,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "minutesPlayed": 27,
            "touches": 48,
            "rating": 7,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0488,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0261093
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Lucas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-vazquez",
            "shortName": "L. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "17",
            "height": 173,
            "userCount": 40961,
            "id": 255239,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 678326400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "challengeLost": 1,
            "minutesPlayed": 10,
            "touches": 4,
            "rating": 6.4,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.00540041
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Arda G\u00fcler",
            "firstName": "Arda Guler",
            "slug": "arda-guler",
            "shortName": "A. G\u00fcler",
            "position": "M",
            "jerseyNumber": "15",
            "height": 176,
            "userCount": 250221,
            "id": 1091116,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1109289600,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0623\u0631\u062f\u0627"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 9,
            "touches": 7,
            "rating": 6.7,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Brahim D\u00edaz",
            "slug": "brahim-diaz",
            "shortName": "B. D\u00edaz",
            "position": "M",
            "jerseyNumber": "21",
            "height": 170,
            "userCount": 127963,
            "id": 835485,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933638400,
            "proposedMarketValueRaw": {
                "value": 42000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u062f\u064a\u0627\u0632"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 5,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00528463
        },
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Gonzalez",
            "slug": "gonzalez-fran",
            "shortName": "F. Gonz\u00e1lez",
            "position": "G",
            "jerseyNumber": "26",
            "height": 199,
            "userCount": 4221,
            "id": 1493226,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1119571200,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Fran"
                },
                "shortNameTranslation": {
                    "ar": "Fran"
                }
            }
        },
        "teamId": 5069,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Andriy Lunin",
            "slug": "andriy-lunin",
            "shortName": "A. Lunin",
            "position": "G",
            "jerseyNumber": "13",
            "height": 191,
            "userCount": 56761,
            "id": 857574,
            "country": {
                "alpha2": "UA",
                "alpha3": "UKR",
                "name": "Ukraine",
                "slug": "ukraine"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918691200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jes\u00fas Vallejo",
            "slug": "jesus-vallejo",
            "shortName": "J. Vallejo",
            "position": "D",
            "jerseyNumber": "18",
            "height": 184,
            "userCount": 11196,
            "id": 355048,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852422400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Jacobo Naveros",
            "firstName": "",
            "lastName": "",
            "slug": "jacobo-naveros",
            "shortName": "J. Naveros",
            "position": "D",
            "jerseyNumber": "31",
            "height": 188,
            "userCount": 1820,
            "id": 1403348,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1104969600,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 5069,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Fran Garc\u00eda",
            "firstName": "",
            "lastName": "",
            "slug": "fran-garcia",
            "shortName": "F. Garcia",
            "position": "D",
            "jerseyNumber": "20",
            "height": 170,
            "userCount": 30026,
            "id": 851271,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 934588800,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Dani Ceballos",
            "slug": "dani-ceballos",
            "shortName": "D. Ceballos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 179,
            "userCount": 34290,
            "id": 547838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839376000,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    },
    {
        "player": {
            "name": "Endrick",
            "firstName": "",
            "lastName": "",
            "slug": "endrick",
            "shortName": "Endrick",
            "position": "F",
            "jerseyNumber": "16",
            "height": 173,
            "userCount": 197671,
            "id": 1174937,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1153440000,
            "proposedMarketValueRaw": {
                "value": 63000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
                }
            }
        },
        "teamId": 2829,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Madrid"
    }
]
[
    {
        "player": {
            "name": "\u00c1lex Remiro",
            "slug": "alex-remiro",
            "shortName": "\u00c1. Remiro",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1691,
            "id": 791773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 796003200,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 26,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "errorLeadToAShot": 2,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 6.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "goalsPrevented": -1.0078
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Hamari Traor\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "hamari-traore",
            "shortName": "H. Traor\u00e9",
            "position": "D",
            "jerseyNumber": "18",
            "height": 175,
            "userCount": 3598,
            "id": 362014,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696470400,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u0627\u0645\u0627\u0631\u064a \u062a\u0631\u0627\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062a\u0631\u0627\u0648\u0631\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "minutesPlayed": 75,
            "touches": 56,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0142265
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aritz Elustondo",
            "slug": "aritz-elustondo",
            "shortName": "A. Elustondo",
            "position": "D",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 327,
            "id": 785468,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 764812800,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 70,
            "totalLongBalls": 7,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 6,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 4,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 88,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.2215,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0238196
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Pacheco",
            "firstName": "",
            "lastName": "",
            "slug": "jon-pacheco",
            "shortName": "J. Pacheco",
            "position": "D",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 450,
            "id": 934383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978912000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 45,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "totalClearance": 5,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.4,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.135712
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Javi L\u00f3pez",
            "slug": "lopez-javi",
            "shortName": "J. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 345,
            "id": 945404,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 34,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "errorLeadToAGoal": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 5.9,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.0173,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.0107165
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Brais M\u00e9ndez",
            "slug": "brais-mendez",
            "shortName": "B. M\u00e9ndez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 184,
            "userCount": 2033,
            "id": 845385,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852595200,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 35,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 8,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 6,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 72,
            "rating": 6.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.1238,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0244049
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Urko Gonz\u00e1lez",
            "slug": "urko-gonzalez",
            "shortName": "U. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 131,
            "id": 1064009,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 985046400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 5,
            "dispossessed": 2,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 22,
            "rating": 6.3,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Be\u00f1at Turrientes",
            "firstName": "",
            "lastName": "",
            "slug": "benat-turrientes",
            "shortName": "B. Turrientes",
            "position": "M",
            "jerseyNumber": "22",
            "height": 179,
            "userCount": 621,
            "id": 980410,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1012435200,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 17,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 37,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0331,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0212605
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Takefusa Kubo",
            "firstName": "",
            "lastName": "",
            "slug": "kubo-takefusa",
            "shortName": "T. Kubo",
            "position": "M",
            "jerseyNumber": "14",
            "height": 174,
            "userCount": 27500,
            "id": 880218,
            "country": {
                "alpha2": "JP",
                "alpha3": "JPN",
                "name": "Japan",
                "slug": "japan"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 991612800,
            "proposedMarketValueRaw": {
                "value": 52000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0628\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 14,
            "duelWon": 6,
            "dispossessed": 6,
            "totalContest": 5,
            "wonContest": 2,
            "totalTackle": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 34,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.020878
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mikel Oyarzabal",
            "slug": "mikel-oyarzabal",
            "shortName": "M. Oyarzabal",
            "position": "F",
            "jerseyNumber": "10",
            "height": 181,
            "userCount": 6317,
            "id": 823622,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861580800,
            "proposedMarketValueRaw": {
                "value": 43000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 9,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 1,
            "minutesPlayed": 83,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.2031,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sheraldo Becker",
            "slug": "sheraldo-becker",
            "shortName": "S. Becker",
            "position": "F",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1649,
            "id": 352544,
            "country": {
                "alpha2": "SR",
                "alpha3": "SUR",
                "name": "Suriname",
                "slug": "suriname"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 792288000,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0628\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 12,
            "accurateCross": 4,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 5,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 38,
            "rating": 7.3,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1248,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.335108
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Mart\u00edn Zubimendi",
            "slug": "martin-zubimendi",
            "shortName": "M. Zubimendi",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 4676,
            "id": 966837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 917913600,
            "proposedMarketValueRaw": {
                "value": 62000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 20,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 6,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 34,
            "rating": 7.5,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.3606,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.0125356
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Sergio G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gomez",
            "shortName": "S. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 171,
            "userCount": 6433,
            "id": 855835,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 968025600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 14,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 3,
            "challengeLost": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 24,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0153555
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Ander Barrenetxea",
            "firstName": "",
            "lastName": "",
            "slug": "ander-barrenetxea",
            "shortName": "A. Barrenetxea",
            "position": "F",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 1371,
            "id": 966862,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009411200,
            "proposedMarketValueRaw": {
                "value": 19100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "interceptionWon": 1,
            "minutesPlayed": 22,
            "touches": 21,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0188135
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Aramburu",
            "firstName": "Jon Aramburu",
            "slug": "jon-aramburu",
            "shortName": "J. Aramburu",
            "position": "D",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 3329,
            "id": 1116388,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027382400,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 15,
            "touches": 20,
            "rating": 6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Luka Su\u010di\u0107",
            "slug": "luka-sucic",
            "shortName": "L. Su\u010di\u0107",
            "position": "M",
            "jerseyNumber": "24",
            "height": 185,
            "userCount": 6252,
            "id": 949156,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1031443200,
            "proposedMarketValueRaw": {
                "value": 16300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 17,
            "touches": 10,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Unai Marrero",
            "firstName": "Unai Marrero",
            "slug": "unai-marrero",
            "shortName": "U. Marrero",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 144,
            "id": 1094782,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002585600,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Martin",
            "firstName": "Jon Mart\u00edn",
            "slug": "vicente-jon-martin",
            "shortName": "J. Martin",
            "position": "D",
            "jerseyNumber": "31",
            "height": 185,
            "userCount": 301,
            "id": 1466116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1145750400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2824,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Aihen Mu\u00f1oz",
            "slug": "aihen-munoz",
            "shortName": "A. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 370,
            "id": 966441,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 871689600,
            "proposedMarketValueRaw": {
                "value": 8300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Magunazelaia",
            "firstName": "Jon Magunacelaya",
            "slug": "jon-magunazelaia",
            "shortName": "J. Magunazelaia",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 96,
            "id": 1134396,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994982400,
            "proposedMarketValueRaw": {
                "value": 925000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Pablo Mar\u00edn",
            "firstName": "Pablo Mar\u00edn",
            "slug": "pablo-marin",
            "shortName": "P. Mar\u00edn",
            "position": "M",
            "jerseyNumber": "28",
            "height": 178,
            "userCount": 179,
            "id": 1139409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057190400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Jon Ander Olasagasti",
            "slug": "jon-ander-olasagasti",
            "shortName": "J. A. Olasagasti",
            "position": "M",
            "jerseyNumber": "16",
            "height": 169,
            "userCount": 144,
            "id": 1010383,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966384000,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Umar Sadiq",
            "slug": "umar-sadiq",
            "shortName": "U. Sadiq",
            "position": "F",
            "jerseyNumber": "19",
            "height": 192,
            "userCount": 2206,
            "id": 754710,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 854841600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0635\u0627\u062f\u0642"
                }
            }
        },
        "teamId": 2824,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Real Sociedad"
    },
    {
        "player": {
            "name": "Dani C\u00e1rdenas",
            "firstName": "",
            "lastName": "",
            "slug": "dani-cardenas",
            "shortName": "D. C\u00e1rdenas",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 188,
            "id": 965832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 859507200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 3,
            "totalLongBalls": 13,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 3,
            "minutesPlayed": 90,
            "touches": 18,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "goalsPrevented": -0.3916
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Andrei Ra\u021biu",
            "slug": "andrei-ratiu",
            "shortName": "A. Ra\u021biu",
            "position": "D",
            "jerseyNumber": "2",
            "height": 183,
            "userCount": 3095,
            "id": 965031,
            "country": {
                "alpha2": "RO",
                "alpha3": "ROU",
                "name": "Romania",
                "slug": "romania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898300800,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0627\u062a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 34,
            "rating": 6.6,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.3979,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0503246
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Florian Lejeune",
            "slug": "florian-lejeune",
            "shortName": "F. Lejeune",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 744,
            "id": 88528,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674697600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 10,
            "totalLongBalls": 8,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 5,
            "duelLost": 1,
            "duelWon": 5,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 9,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0998,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Abdul Mumin",
            "slug": "abdul-mumin",
            "shortName": "A. Mumin",
            "position": "D",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 1389,
            "id": 846147,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897091200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 17,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 3,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.2,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0205581
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Alfonso Espino",
            "slug": "alfonso-espino",
            "shortName": "A. Espino",
            "position": "D",
            "jerseyNumber": "22",
            "height": 172,
            "userCount": 573,
            "id": 542634,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694569600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 13,
            "totalLongBalls": 7,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 7,
            "duelWon": 14,
            "challengeLost": 3,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 6,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.1,
            "possessionLostCtrl": 22,
            "expectedGoals": 0.0277,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0100467
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Jorge de Frutos",
            "firstName": "",
            "lastName": "",
            "slug": "jorge-de-frutos",
            "shortName": "J. de Frutos",
            "position": "M",
            "jerseyNumber": "19",
            "height": 173,
            "userCount": 642,
            "id": 900003,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 849312000,
            "proposedMarketValueRaw": {
                "value": 3600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 3,
            "minutesPlayed": 75,
            "touches": 20,
            "rating": 7.3,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.1532,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.0232149
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Unai L\u00f3pez",
            "slug": "unai-lopez",
            "shortName": "U. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 169,
            "userCount": 520,
            "id": 588566,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 815011200,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "interceptionWon": 1,
            "wasFouled": 2,
            "minutesPlayed": 45,
            "touches": 30,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0185776
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Valent\u00edn",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-valentin",
            "shortName": "\u00d3. Valent\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 452,
            "id": 900008,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 777340800,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 26,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 9,
            "totalClearance": 5,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 6,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0255329
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Adri\u00e1n Embarba",
            "slug": "adrian-embarba",
            "shortName": "A. Embarba",
            "position": "M",
            "jerseyNumber": "21",
            "height": 173,
            "userCount": 409,
            "id": 346516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 705196800,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 75,
            "touches": 40,
            "rating": 6.6,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.033,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Randy Nteka",
            "slug": "randy-nteka",
            "shortName": "R. Nteka",
            "position": "M",
            "jerseyNumber": "11",
            "height": 190,
            "userCount": 684,
            "id": 932764,
            "country": {
                "alpha2": "AO",
                "alpha3": "AGO",
                "name": "Angola",
                "slug": "angola"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 881366400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 2,
            "totalTackle": 2,
            "fouls": 3,
            "totalOffside": 3,
            "minutesPlayed": 63,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0120841
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Isi Palaz\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "isi-palazon",
            "shortName": "I. Palaz\u00f3n",
            "position": "M",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 1291,
            "id": 899982,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 788486400,
            "proposedMarketValueRaw": {
                "value": 8700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 6.8,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0158,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.334334
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Gerard Gumbau",
            "firstName": "",
            "lastName": "",
            "slug": "gerard-gumbau",
            "shortName": "G. Gumbau",
            "position": "M",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 383,
            "id": 326471,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 787708800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 45,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.152,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0516738
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Sergio Camello",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-camello",
            "shortName": "S. Camello",
            "position": "F",
            "jerseyNumber": "14",
            "height": 177,
            "userCount": 1240,
            "id": 910024,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 27,
            "touches": 11,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.2296,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Josep Chavarr\u00eda",
            "slug": "josep-chavarria",
            "shortName": "J. Chavarr\u00eda",
            "position": "D",
            "jerseyNumber": "3",
            "height": 174,
            "userCount": 216,
            "id": 1010421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892166400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u060c \u0628\u064a\u0628"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 15,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00640638
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Ismaila Ciss",
            "firstName": "",
            "lastName": "",
            "slug": "ismaila-ciss",
            "shortName": "I. Ciss",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 2909,
            "id": 913679,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 763776000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 15,
            "touches": 6,
            "rating": 7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Iv\u00e1n Balliu",
            "slug": "ivan-balliu",
            "shortName": "I. Balliu",
            "position": "D",
            "jerseyNumber": "20",
            "height": 175,
            "userCount": 664,
            "id": 152446,
            "country": {
                "alpha2": "AL",
                "alpha3": "ALB",
                "name": "Albania",
                "slug": "albania"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694224000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 10,
            "touches": 6,
            "rating": 6.3,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Miguel \u00c1ngel Morro",
            "slug": "miguel-angel-morro",
            "shortName": "M. \u00c1. Morro",
            "position": "G",
            "jerseyNumber": "13",
            "height": 195,
            "userCount": 51,
            "id": 945816,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 946684800,
            "proposedMarketValueRaw": {
                "value": 640000,
                "currency": "EUR"
            }
        },
        "teamId": 5136,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Aridane Hern\u00e1ndez",
            "slug": "aridane-hernandez",
            "shortName": "A. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 186,
            "userCount": 235,
            "id": 41013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 606614400,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Marco de las Sias",
            "slug": "marco-de-las-sias",
            "shortName": "M. d. l. S\u00edas",
            "position": "D",
            "jerseyNumber": "26",
            "userCount": 26,
            "id": 1893146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1135814400
        },
        "teamId": 43756,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pelayo Fern\u00e1ndez",
            "firstName": "",
            "lastName": "",
            "slug": "pelayo-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "27",
            "height": 193,
            "userCount": 220,
            "id": 1139724,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051574400,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Pedro D\u00edaz",
            "slug": "pedro-diaz",
            "shortName": "P. D\u00edaz",
            "position": "M",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 245,
            "id": 900669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 897004800,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2818,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "\u00d3scar Trejo",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-trejo",
            "shortName": "\u00d3. Trejo",
            "position": "M",
            "jerseyNumber": "8",
            "height": 177,
            "userCount": 514,
            "id": 21949,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 578016000,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
                }
            }
        },
        "teamId": 2818,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    },
    {
        "player": {
            "name": "Etienne Eto'o Pineda",
            "slug": "etienne-etoo-pineda",
            "shortName": "E. E. Pineda",
            "position": "F",
            "jerseyNumber": "28",
            "height": 189,
            "userCount": 1906,
            "id": 1103233,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1029628800
        },
        "teamId": 43756,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Rayo Vallecano"
    }
]
[
    {
        "player": {
            "name": "Giorgi Mamardashvili",
            "slug": "giorgi-mamardashvili",
            "shortName": "G. Mamardashvili",
            "position": "G",
            "jerseyNumber": "25",
            "height": 200,
            "userCount": 6767,
            "id": 930997,
            "country": {
                "alpha2": "GE",
                "alpha3": "GEO",
                "name": "Georgia",
                "slug": "georgia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970185600,
            "proposedMarketValueRaw": {
                "value": 47000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 17,
            "totalLongBalls": 24,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 2,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.1,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "goalsPrevented": 0.5255
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Thierry Correia",
            "slug": "correia-thierry",
            "shortName": "T. Correia",
            "position": "D",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 789,
            "id": 851282,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920937600,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 23,
            "totalLongBalls": 8,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.7,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0655513
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cristhian Mosquera",
            "firstName": "Cristhian Mosquera",
            "lastName": "",
            "slug": "cristhian-mosquera",
            "shortName": "C. Mosquera",
            "position": "D",
            "jerseyNumber": "3",
            "height": 188,
            "userCount": 1064,
            "id": 1144630,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1088294400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mosquera \u060c Cristhian"
                },
                "shortNameTranslation": {
                    "ar": "M. \u060c Cristhian"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 52,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 1,
            "penaltyConceded": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 69,
            "rating": 6.2,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Yarek Gasiorowski",
            "firstName": "Yarek Gasiorowski",
            "slug": "gasiorowski-yarek",
            "shortName": "Y. Gasiorowski",
            "position": "D",
            "jerseyNumber": "24",
            "height": 190,
            "userCount": 1089,
            "id": 1184317,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1105488000,
            "proposedMarketValueRaw": {
                "value": 13800000,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 33,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 5,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 6.9,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Jes\u00fas V\u00e1zquez",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-vazquez",
            "shortName": "J. V\u00e1zquez",
            "position": "D",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 348,
            "id": 996929,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1041465600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 77,
            "touches": 25,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rafa Mir",
            "slug": "rafa-mir",
            "shortName": "R. Mir",
            "position": "F",
            "jerseyNumber": "11",
            "height": 189,
            "userCount": 1282,
            "id": 825754,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 866592000,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 4,
            "blockedScoringAttempt": 1,
            "totalTackle": 3,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 77,
            "touches": 26,
            "rating": 5.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0116,
            "ratingVersions": {
                "original": 5.9,
                "alternative": null
            },
            "expectedAssists": 0.0794974
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Pepelu",
            "slug": "pepelu",
            "shortName": "Pepelu",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1774,
            "id": 826948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 902793600,
            "proposedMarketValueRaw": {
                "value": 20000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 42,
            "accuratePass": 30,
            "totalLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 62,
            "rating": 7.2,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.0189,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.12581
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Javier Guerra",
            "slug": "javier-guerra",
            "shortName": "J. Guerra",
            "position": "M",
            "jerseyNumber": "8",
            "height": 187,
            "userCount": 1162,
            "id": 1122610,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052784000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 4,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 86,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0163255
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Diego L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "diego-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 172,
            "userCount": 927,
            "id": 998950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1021248000,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 2,
            "totalContest": 1,
            "bigChanceCreated": 2,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 66,
            "touches": 25,
            "rating": 7.2,
            "possessionLostCtrl": 9,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.980363
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Andr\u00e9 Almeida",
            "slug": "andre-almeida",
            "shortName": "A. Almeida",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 1028,
            "id": 845693,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 959644800,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "totalOffside": 2,
            "minutesPlayed": 66,
            "touches": 23,
            "rating": 7.1,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00610899
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Duro",
            "slug": "hugo-duro",
            "shortName": "H. Duro",
            "position": "F",
            "jerseyNumber": "9",
            "height": 180,
            "userCount": 2448,
            "id": 909119,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 942192000,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0647. \u062f\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 6,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 2,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "wasFouled": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.9821,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dimitri Foulquier",
            "firstName": "",
            "lastName": "",
            "slug": "dimitri-foulquier",
            "shortName": "D. Foulquier",
            "position": "D",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 312,
            "id": 151138,
            "country": {
                "alpha2": "GP",
                "alpha3": "GLP",
                "name": "Guadeloupe",
                "slug": "guadeloupe"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 732844800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 18,
            "rating": 6.1,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Dani G\u00f3mez",
            "slug": "dani-gomez",
            "shortName": "D. G\u00f3mez",
            "position": "F",
            "jerseyNumber": "17",
            "height": 177,
            "userCount": 278,
            "id": 888930,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 901756800,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 2,
            "interceptionWon": 2,
            "fouls": 1,
            "totalOffside": 2,
            "minutesPlayed": 24,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "David Otorbi",
            "firstName": "David Otorbi",
            "slug": "otorbi-david",
            "shortName": "D. Otorbi",
            "position": "F",
            "jerseyNumber": "27",
            "height": 180,
            "userCount": 191,
            "id": 1580022,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1192492800,
            "proposedMarketValueRaw": {
                "value": 465000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 13,
            "touches": 6,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Mart\u00edn Tej\u00f3n",
            "slug": "martin-tejon",
            "shortName": "M. Tej\u00f3n",
            "position": "M",
            "jerseyNumber": "32",
            "height": 165,
            "userCount": 51,
            "id": 1462786,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1081728000,
            "proposedMarketValueRaw": {
                "value": 485000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 6,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 13,
            "touches": 13,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Hugo Guillam\u00f3n",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-guillamon",
            "shortName": "H. Guillam\u00f3n",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 657,
            "id": 855830,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949276800,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u063a. \u0647\u0648\u063a\u0648"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 9,
            "goalAssist": 0,
            "minutesPlayed": 12,
            "touches": 10,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Ra\u00fal Jim\u00e9nez Latorre",
            "slug": "raul-jimenez-latorre",
            "shortName": "R. J. Latorre",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 137,
            "id": 1466122,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1140048000
        },
        "teamId": 72024,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Stole Dimitrievski",
            "firstName": "",
            "lastName": "",
            "slug": "stole-dimitrievski",
            "shortName": "S. Dimitrievski",
            "position": "G",
            "jerseyNumber": "13",
            "height": 188,
            "userCount": 736,
            "id": 97951,
            "country": {
                "alpha2": "MK",
                "alpha3": "MKD",
                "name": "North Macedonia",
                "slug": "north-macedonia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 756777600,
            "proposedMarketValueRaw": {
                "value": 4200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Cenk \u00d6zka\u00e7ar",
            "firstName": "",
            "lastName": "",
            "slug": "cenk-ozkacar",
            "shortName": "C. \u00d6zka\u00e7ar",
            "position": "D",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 890,
            "id": 953097,
            "country": {
                "alpha2": "TR",
                "alpha3": "TUR",
                "name": "T\u00fcrkiye",
                "slug": "turkiye"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 970790400,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
                }
            }
        },
        "teamId": 2831,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Rodrigo Abajas",
            "slug": "rodrigo-abajas",
            "shortName": "R. Abajas",
            "position": "D",
            "jerseyNumber": "12",
            "height": 186,
            "userCount": 23,
            "id": 1657026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1070582400,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 39,
        "jerseyNumber": "39",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "C\u00e9sar T\u00e1rrega",
            "slug": "cesar-tarrega",
            "shortName": "C. T\u00e1rrega",
            "position": "D",
            "jerseyNumber": "15",
            "height": 193,
            "userCount": 263,
            "id": 996928,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2828,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Ali Fadal",
            "slug": "fadal-ali",
            "shortName": "A. Fadal",
            "position": "M",
            "jerseyNumber": "14",
            "userCount": 87,
            "id": 1513213,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1074038400,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 24337,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Alberto Mari",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-mari",
            "shortName": "A. Mar\u00ed",
            "position": "F",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 110,
            "id": 990232,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 994809600,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0627\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2815,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Valencia"
    },
    {
        "player": {
            "name": "Marc-Andr\u00e9 ter Stegen",
            "firstName": "",
            "lastName": "",
            "slug": "marc-andre-ter-stegen",
            "shortName": "M.-A ter Stegen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 73119,
            "id": 88625,
            "country": {
                "alpha2": "DE",
                "alpha3": "DEU",
                "name": "Germany",
                "slug": "germany"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 704592000,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 28,
            "totalLongBalls": 11,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "errorLeadToAShot": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.0858
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Jules Kound\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "jules-kounde",
            "shortName": "J. Kound\u00e9",
            "position": "D",
            "jerseyNumber": "23",
            "height": 180,
            "userCount": 66426,
            "id": 827212,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 910828800,
            "proposedMarketValueRaw": {
                "value": 58000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 65,
            "accuratePass": 60,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 83,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0591546
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau Cubars\u00ed",
            "firstName": "Pau Cubars\u00ed",
            "lastName": "",
            "slug": "pau-cubarsi",
            "shortName": "P. Cubars\u00ed",
            "position": "D",
            "jerseyNumber": "2",
            "height": 184,
            "userCount": 53004,
            "id": 1402913,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1169424000,
            "proposedMarketValueRaw": {
                "value": 37000000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 44,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "clearanceOffLine": 1,
            "outfielderBlock": 1,
            "fouls": 2,
            "minutesPlayed": 64,
            "touches": 58,
            "rating": 6.9,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0214,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1igo Mart\u00ednez",
            "slug": "inigo-martinez",
            "shortName": "I. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 181,
            "userCount": 22254,
            "id": 173883,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 674438400,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 85,
            "accuratePass": 75,
            "totalLongBalls": 8,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 3,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 91,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0601,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0398224
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Alejandro Balde",
            "slug": "alejandro-balde",
            "shortName": "A. Balde",
            "position": "D",
            "jerseyNumber": "3",
            "height": 175,
            "userCount": 51676,
            "id": 997035,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1066435200,
            "proposedMarketValueRaw": {
                "value": 44000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 34,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 64,
            "touches": 54,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0144,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.31293
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Bernal",
            "slug": "marc-bernal",
            "shortName": "M. Bernal",
            "position": "M",
            "jerseyNumber": "28",
            "height": 191,
            "userCount": 14917,
            "id": 1526618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1180137600,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 49,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "outfielderBlock": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 71,
            "touches": 61,
            "rating": 7,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0376323
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Marc Casad\u00f3",
            "slug": "marc-casado",
            "shortName": "M. Casad\u00f3",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 22229,
            "id": 1000483,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1063497600,
            "proposedMarketValueRaw": {
                "value": 14500000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 62,
            "accuratePass": 52,
            "totalLongBalls": 5,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 7,
            "challengeLost": 1,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 7.2,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.5996,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.164223
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Lamine Yamal",
            "firstName": "Lamine Yamal",
            "slug": "lamine-yamal",
            "shortName": "Lamine Yamal",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 401546,
            "id": 1402912,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1184284800,
            "proposedMarketValueRaw": {
                "value": 161000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 40,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 3,
            "bigChanceCreated": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 3,
            "minutesPlayed": 86,
            "touches": 67,
            "rating": 7.8,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.41,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.0806444
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Raphinha",
            "slug": "raphinha",
            "shortName": "Raphinha",
            "position": "F",
            "jerseyNumber": "11",
            "height": 176,
            "userCount": 204533,
            "id": 831005,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 850521600,
            "proposedMarketValueRaw": {
                "value": 54000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 45,
            "accuratePass": 33,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "penaltyWon": 1,
            "minutesPlayed": 90,
            "touches": 64,
            "rating": 8,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.0586,
            "keyPass": 3,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.151638
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ferran Torres",
            "slug": "ferran-torres",
            "shortName": "F. Torres",
            "position": "F",
            "jerseyNumber": "7",
            "height": 185,
            "userCount": 51960,
            "id": 855833,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 951782400,
            "proposedMarketValueRaw": {
                "value": 32000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 2,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalOffside": 1,
            "minutesPlayed": 64,
            "touches": 22,
            "rating": 6.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2068,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.143104
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Robert Lewandowski",
            "slug": "robert-lewandowski",
            "shortName": "R. Lewandowski",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 322929,
            "id": 41789,
            "country": {
                "alpha2": "PL",
                "alpha3": "POL",
                "name": "Poland",
                "slug": "poland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 588124800,
            "proposedMarketValueRaw": {
                "value": 14000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 5,
            "dispossessed": 3,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "goals": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 31,
            "rating": 8.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 1.8161,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8.4,
                "alternative": null
            },
            "expectedAssists": 0.04876
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Gerard Mart\u00edn",
            "firstName": "Gerard",
            "slug": "gerard-martin",
            "shortName": "G. Mart\u00edn",
            "position": "D",
            "jerseyNumber": "35",
            "height": 186,
            "userCount": 7157,
            "id": 1094827,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1014681600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 35,
        "jerseyNumber": "35",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "bigChanceCreated": 1,
            "minutesPlayed": 26,
            "touches": 21,
            "rating": 6.9,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.212756
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Andreas Christensen",
            "firstName": "",
            "lastName": "",
            "slug": "andreas-christensen",
            "shortName": "A. Christensen",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 32895,
            "id": 186795,
            "country": {
                "alpha2": "DK",
                "alpha3": "DNK",
                "name": "Denmark",
                "slug": "denmark"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 829094400,
            "proposedMarketValueRaw": {
                "value": 29000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u0646\u0633\u0646, \u0623\u0646\u062f\u0631\u064a\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0643\u0631\u064a\u0633\u062a\u0646\u0633\u0646"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "fouls": 1,
            "minutesPlayed": 26,
            "touches": 18,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pedri",
            "firstName": "",
            "lastName": "",
            "slug": "pedri",
            "shortName": "Pedri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 174,
            "userCount": 178786,
            "id": 992587,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1038182400,
            "proposedMarketValueRaw": {
                "value": 88000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 15,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "duelLost": 2,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "minutesPlayed": 26,
            "touches": 25,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0332,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00638423
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Eric Garc\u00eda",
            "slug": "eric-garcia",
            "shortName": "E. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "24",
            "height": 182,
            "userCount": 17471,
            "id": 876214,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 978998400,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "minutesPlayed": 19,
            "touches": 15,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00575261
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pau V\u00edctor",
            "firstName": "",
            "lastName": "",
            "slug": "pau-victor",
            "shortName": "P. V\u00edctor",
            "position": "F",
            "jerseyNumber": "18",
            "height": 182,
            "userCount": 20945,
            "id": 1031567,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "minutesPlayed": 12,
            "touches": 11,
            "rating": 7,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0547176
        },
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Ander Astralaga",
            "firstName": "",
            "lastName": "",
            "slug": "ander-astralaga",
            "shortName": "A. Astralaga",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 6599,
            "id": 1142253,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083542400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "I\u00f1aki Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "inaki-pena",
            "shortName": "I. Pe\u00f1a",
            "position": "G",
            "jerseyNumber": "13",
            "height": 185,
            "userCount": 20033,
            "id": 794949,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 920332800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "\u00c1lex Valle",
            "firstName": "",
            "lastName": "",
            "slug": "valle-alex",
            "shortName": "\u00c1. Valle",
            "position": "D",
            "jerseyNumber": "11",
            "height": 178,
            "userCount": 4044,
            "id": 1142238,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1082851200,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Gomez, Alex Valle"
                },
                "shortNameTranslation": {
                    "ar": "A. V. Gomez"
                }
            }
        },
        "teamId": 2352,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Sergi Dom\u00ednguez",
            "firstName": "Sergi Dom\u00ednguez",
            "slug": "sergi-dominguez",
            "shortName": "S. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 5724,
            "id": 1153335,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1112313600,
            "proposedMarketValueRaw": {
                "value": 955000,
                "currency": "EUR"
            }
        },
        "teamId": 24343,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Hector Fort",
            "firstName": "H\u00e9ctor Fort",
            "slug": "fort-hector",
            "shortName": "H. Fort",
            "position": "D",
            "jerseyNumber": "32",
            "height": 185,
            "userCount": 19638,
            "id": 1402908,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1154476800,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            }
        },
        "teamId": 2817,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    },
    {
        "player": {
            "name": "Pablo Torre",
            "slug": "pablo-torre",
            "shortName": "P. Torre",
            "position": "M",
            "jerseyNumber": "14",
            "height": 173,
            "userCount": 20688,
            "id": 1082981,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1049328000,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2817,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Barcelona"
    }
]
[
    {
        "player": {
            "name": "Sergio Herrera",
            "slug": "sergio-herrera",
            "shortName": "S. Herrera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 192,
            "userCount": 584,
            "id": 294377,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736646400,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 12,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalClearance": 2,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "totalKeeperSweeper": 3,
            "accurateKeeperSweeper": 3,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.9,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.5412
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jes\u00fas Areso",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-areso",
            "shortName": "J. Areso",
            "position": "D",
            "jerseyNumber": "12",
            "height": 183,
            "userCount": 411,
            "id": 910267,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 930873600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 9,
            "duelWon": 1,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "totalClearance": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 60,
            "rating": 6.3,
            "possessionLostCtrl": 21,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0464529
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Alejandro Catena",
            "firstName": "",
            "lastName": "",
            "slug": "alejandro-catena",
            "shortName": "A. Catena",
            "position": "D",
            "jerseyNumber": "24",
            "height": 194,
            "userCount": 557,
            "id": 900792,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 783302400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 51,
            "accuratePass": 37,
            "totalLongBalls": 11,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 5,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 7,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 7.1,
            "possessionLostCtrl": 14,
            "expectedGoals": 0.2406,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.00943753
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jorge Herrando",
            "slug": "herrando-jorge",
            "shortName": "J. Herrando",
            "position": "D",
            "jerseyNumber": "5",
            "height": 192,
            "userCount": 152,
            "id": 944225,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983318400,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 24,
            "totalLongBalls": 12,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 3,
            "onTargetScoringAttempt": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 49,
            "rating": 6.7,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.088,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.00771365
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Abel Bretones",
            "slug": "abel-bretones",
            "shortName": "A. Bretones",
            "position": "D",
            "jerseyNumber": "23",
            "height": 188,
            "userCount": 311,
            "id": 1010165,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 966816000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2820,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 3,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "dispossessed": 1,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 60,
            "touches": 53,
            "rating": 6.9,
            "possessionLostCtrl": 15,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.195759
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Mu\u00f1oz",
            "firstName": "",
            "lastName": "",
            "slug": "iker-munoz",
            "shortName": "I. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 216,
            "id": 1119586,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1036454400,
            "proposedMarketValueRaw": {
                "value": 4500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 19,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 33,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00663065
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Lucas Torr\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-torro",
            "shortName": "L. Torr\u00f3",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 529,
            "id": 187313,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 774576000,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u062a\u0648\u0631\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 63,
            "accuratePass": 47,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 3,
            "aerialWon": 5,
            "duelLost": 8,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalClearance": 3,
            "interceptionWon": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 6.9,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0271834
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Moi G\u00f3mez",
            "firstName": "",
            "lastName": "",
            "slug": "moi-gomez",
            "shortName": "M. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "16",
            "height": 174,
            "userCount": 483,
            "id": 149370,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 772329600,
            "proposedMarketValueRaw": {
                "value": 3700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "minutesPlayed": 60,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.106129
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Garc\u00eda",
            "slug": "ruben-garcia",
            "shortName": "R. Garc\u00eda",
            "position": "M",
            "jerseyNumber": "14",
            "height": 171,
            "userCount": 697,
            "id": 260031,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742608000,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 30,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 7,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "wasFouled": 3,
            "fouls": 2,
            "minutesPlayed": 78,
            "touches": 56,
            "rating": 7.5,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1769,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.356755
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ante Budimir",
            "firstName": "",
            "lastName": "",
            "slug": "ante-budimir",
            "shortName": "A. Budimir",
            "position": "F",
            "jerseyNumber": "17",
            "height": 190,
            "userCount": 5214,
            "id": 37318,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 680140800,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 15,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 8,
            "duelLost": 6,
            "duelWon": 12,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "outfielderBlock": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 7.2,
            "possessionLostCtrl": 17,
            "expectedGoals": 0.1987,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.00961602
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aimar Oroz",
            "firstName": "",
            "lastName": "",
            "slug": "aimar-oroz",
            "shortName": "A. Oroz",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 927,
            "id": 985329,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1006819200,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 5,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 2,
            "hitWoodwork": 1,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 89,
            "touches": 63,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.7392,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.123965
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Jon Moncayola",
            "slug": "jon-moncayola",
            "shortName": "J. Moncayola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 182,
            "userCount": 447,
            "id": 976141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 16,
            "totalLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "duelLost": 2,
            "challengeLost": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "outfielderBlock": 1,
            "minutesPlayed": 45,
            "touches": 32,
            "rating": 7.1,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.1641,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.377208
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "firstName": "",
            "lastName": "",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 190,
            "id": 897902,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 712281600,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 2,
            "duelWon": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 30,
            "touches": 27,
            "rating": 6.6,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0102356
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Bryan Zaragoza",
            "firstName": "",
            "lastName": "",
            "slug": "bryan-zaragoza",
            "shortName": "B. Zaragoza",
            "position": "M",
            "jerseyNumber": "19",
            "height": 165,
            "userCount": 4023,
            "id": 1084730,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 999993600,
            "proposedMarketValueRaw": {
                "value": 11200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 30,
            "touches": 31,
            "rating": 7.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1338,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.067917
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Rub\u00e9n Pe\u00f1a",
            "firstName": "",
            "lastName": "",
            "slug": "ruben-pena",
            "shortName": "R. Pe\u00f1a",
            "position": "D",
            "jerseyNumber": "15",
            "height": 170,
            "userCount": 275,
            "id": 255973,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 679795200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 12,
            "touches": 8,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.009383
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Ra\u00fal Garc\u00eda de Haro",
            "slug": "raul-garcia-de-haro",
            "shortName": "R. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "9",
            "height": 192,
            "userCount": 546,
            "id": 997280,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973209600,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "minutesPlayed": 1,
            "touches": 1,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Dimitrios Stamatakis",
            "slug": "stamatakis-dimitrios",
            "shortName": "D. Stamatakis",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 89,
            "id": 1163077,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051056000,
            "proposedMarketValueRaw": {
                "value": 195000,
                "currency": "EUR"
            }
        },
        "teamId": 24328,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Aitor Fern\u00e1ndez",
            "slug": "aitor-fernandez",
            "shortName": "A. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "13",
            "height": 182,
            "userCount": 234,
            "id": 99516,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 673228800,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Nacho Vidal",
            "slug": "nacho-vidal",
            "shortName": "N. Vidal",
            "position": "D",
            "jerseyNumber": "2",
            "height": 180,
            "userCount": 181,
            "id": 844752,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 2200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Unai Garc\u00eda",
            "slug": "unai-garcia",
            "shortName": "U. Garc\u00eda",
            "position": "D",
            "jerseyNumber": "4",
            "height": 182,
            "userCount": 134,
            "id": 330675,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 715478400,
            "proposedMarketValueRaw": {
                "value": 1200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Javi Mart\u00ednez",
            "slug": "javi-martinez",
            "shortName": "J. Mart\u00ednez",
            "position": "M",
            "jerseyNumber": "21",
            "height": 180,
            "userCount": 96,
            "id": 913732,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 945820800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Pablo Ib\u00e1\u00f1ez",
            "slug": "pablo-ibanez-lumbreras",
            "shortName": "P. Ib\u00e1\u00f1ez",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 176,
            "id": 1084381,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883612800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Iker Benito",
            "firstName": "",
            "lastName": "",
            "slug": "iker-benito",
            "shortName": "I. Benito",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 103,
            "id": 1086346,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028937600,
            "proposedMarketValueRaw": {
                "value": 875000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
                }
            }
        },
        "teamId": 2820,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Osasuna"
    },
    {
        "player": {
            "name": "Juan Soriano",
            "slug": "juan-soriano",
            "shortName": "J. Soriano",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 199,
            "id": 547246,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 872294400,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 11,
            "totalLongBalls": 29,
            "accurateLongBalls": 8,
            "goalAssist": 0,
            "ownGoals": 1,
            "savedShotsFromInsideTheBox": 5,
            "saves": 6,
            "minutesPlayed": 90,
            "touches": 39,
            "rating": 7.3,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "goalsPrevented": 0.2557
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Valentin Rosier",
            "slug": "valentin-rosier",
            "shortName": "V. Rosier",
            "position": "D",
            "jerseyNumber": "12",
            "height": 175,
            "userCount": 578,
            "id": 842419,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 840412800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0631\u0648\u0632\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 17,
            "totalLongBalls": 6,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 11,
            "duelWon": 6,
            "challengeLost": 2,
            "dispossessed": 3,
            "totalContest": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.2,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Aritz Arambarri",
            "firstName": "",
            "lastName": "",
            "slug": "aritz-arambarri",
            "shortName": "A. Arambarri",
            "position": "D",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 43,
            "id": 992397,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 886204800,
            "proposedMarketValueRaw": {
                "value": 540000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0631\u0627\u0646\u0628\u0631\u064a, \u0627\u0631\u064a\u062a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0627\u0631\u0627\u0646\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2839,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 22,
            "totalLongBalls": 9,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 5,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 88,
            "touches": 45,
            "rating": 6.9,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0203,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Sergio Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-gonzalez",
            "shortName": "S. Gonz\u00e1lez",
            "position": "D",
            "jerseyNumber": "6",
            "height": 186,
            "userCount": 324,
            "id": 377234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 703728000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 30,
            "accuratePass": 23,
            "totalLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 1,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 42,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Javier Hern\u00e1ndez",
            "slug": "javier-hernandez",
            "shortName": "J. Hern\u00e1ndez",
            "position": "D",
            "jerseyNumber": "20",
            "height": 181,
            "userCount": 485,
            "id": 1031658,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 894067200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 20,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 6,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 7.8,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1229,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.8,
                "alternative": null
            },
            "expectedAssists": 0.285928
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Darko Bra\u0161anac",
            "firstName": "",
            "lastName": "",
            "slug": "darko-brasanac",
            "shortName": "D. Bra\u0161anac",
            "position": "M",
            "jerseyNumber": "14",
            "height": 178,
            "userCount": 250,
            "id": 94539,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 697852800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 29,
            "accuratePass": 17,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 3,
            "aerialWon": 4,
            "duelLost": 5,
            "duelWon": 6,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 88,
            "touches": 40,
            "rating": 6.5,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.181,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00690066
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Yvan Neyou",
            "firstName": "",
            "lastName": "",
            "slug": "yvan-neyou",
            "shortName": "Y. Neyou",
            "position": "M",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 701,
            "id": 869931,
            "country": {
                "alpha2": "CM",
                "alpha3": "CMR",
                "name": "Cameroon",
                "slug": "cameroon"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852249600,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 37,
            "accuratePass": 23,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 4,
            "duelWon": 6,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.8,
            "possessionLostCtrl": 18,
            "expectedGoals": 0.0301,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juan Cruz",
            "slug": "juan-cruz",
            "shortName": "J. Cruz",
            "position": "M",
            "jerseyNumber": "11",
            "height": 179,
            "userCount": 631,
            "id": 936234,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0631\u0648\u0633"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 10,
            "goalAssist": 0,
            "totalCross": 7,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "minutesPlayed": 63,
            "touches": 33,
            "rating": 7.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.4154,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.106416
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Seydouba Cisse",
            "slug": "seydouba-cisse",
            "shortName": "S. Cisse",
            "position": "M",
            "jerseyNumber": "8",
            "height": 172,
            "userCount": 3391,
            "id": 906065,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981763200,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 1,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "minutesPlayed": 73,
            "touches": 43,
            "rating": 6.8,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0162,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0105725
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Enric Franquesa",
            "slug": "enric-franquesa",
            "shortName": "E. Franquesa",
            "position": "D",
            "jerseyNumber": "15",
            "height": 174,
            "userCount": 166,
            "id": 885259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 856915200,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 9,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 9,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 5,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.025405
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Miguel de la Fuente",
            "firstName": "",
            "lastName": "",
            "slug": "miguel-de-la-fuente",
            "shortName": "M. d. l. Fuente",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 472,
            "id": 914212,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 936316800,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "duelLost": 7,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "wasFouled": 5,
            "totalOffside": 2,
            "minutesPlayed": 88,
            "touches": 25,
            "rating": 6.3,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1346,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Dani Raba",
            "firstName": "",
            "lastName": "",
            "slug": "dani-raba",
            "shortName": "D. Raba",
            "position": "M",
            "jerseyNumber": "10",
            "height": 184,
            "userCount": 260,
            "id": 873947,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 814924800,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u0627\u0628\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 3,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 27,
            "touches": 21,
            "rating": 6.7,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.0558,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0429634
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Juli\u00e1n Chicco",
            "firstName": "",
            "lastName": "",
            "slug": "julian-chicco",
            "shortName": "J. Chicco",
            "position": "M",
            "jerseyNumber": "24",
            "height": 181,
            "userCount": 149,
            "id": 822594,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884649600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "minutesPlayed": 17,
            "touches": 13,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Renato Tapia",
            "slug": "renato-tapia",
            "shortName": "R. Tapia",
            "position": "M",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 3188,
            "id": 352376,
            "country": {
                "alpha2": "PE",
                "alpha3": "PER",
                "name": "Peru",
                "slug": "peru"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 806889600,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "duelWon": 1,
            "totalClearance": 3,
            "wasFouled": 1,
            "minutesPlayed": 2,
            "touches": 5,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Diego Garcia",
            "firstName": "Diego Garcia",
            "lastName": "",
            "slug": "diego-garcia",
            "shortName": "D. Garcia",
            "position": "F",
            "jerseyNumber": "19",
            "height": 188,
            "userCount": 176,
            "id": 1121475,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956016000,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "totalClearance": 1,
            "minutesPlayed": 2,
            "touches": 2
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Roberto L\u00f3pez",
            "firstName": "",
            "lastName": "",
            "slug": "roberto-lopez",
            "shortName": "R. L\u00f3pez",
            "position": "F",
            "jerseyNumber": "21",
            "height": 178,
            "userCount": 254,
            "id": 958018,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956534400,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 2,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "minutesPlayed": 2,
            "touches": 2,
            "possessionLostCtrl": 1
        },
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Marko Dmitrovi\u0107",
            "firstName": "",
            "lastName": "",
            "slug": "marko-dmitrovic",
            "shortName": "M. Dmitrovi\u0107",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 947,
            "id": 94527,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 696211200,
            "proposedMarketValueRaw": {
                "value": 830000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alvin",
            "slug": "alvin",
            "shortName": "Alvin",
            "position": "G",
            "jerseyNumber": "36",
            "userCount": 26,
            "id": 1513618,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1052697600,
            "proposedMarketValueRaw": {
                "value": 27000,
                "currency": "EUR"
            }
        },
        "teamId": 2845,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Lalo Aguilar",
            "firstName": "",
            "lastName": "",
            "slug": "lalo-aguilar",
            "shortName": "L. Aguilar",
            "position": "D",
            "jerseyNumber": "27",
            "height": 188,
            "userCount": 40,
            "id": 1391437,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023753600,
            "proposedMarketValueRaw": {
                "value": 185000,
                "currency": "EUR"
            }
        },
        "teamId": 2848,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Joao Urb\u00e1ez",
            "firstName": "Joao Urb\u00e1ez",
            "lastName": "",
            "slug": "joao-urbaez",
            "shortName": "J. Urb\u00e1ez",
            "position": "D",
            "jerseyNumber": "35",
            "height": 179,
            "userCount": 41,
            "id": 1109628,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027468800,
            "proposedMarketValueRaw": {
                "value": 24000,
                "currency": "EUR"
            }
        },
        "teamId": 262427,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Guirao",
            "firstName": "Carlos",
            "lastName": "Guirao",
            "slug": "carlos-guirao",
            "shortName": "C. Guirao",
            "position": "M",
            "jerseyNumber": "16",
            "userCount": 47,
            "id": 1632259,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051401600,
            "proposedMarketValueRaw": {
                "value": 91000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "\u00d3scar Rodr\u00edguez",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-rodriguez",
            "shortName": "\u00d3. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "7",
            "height": 174,
            "userCount": 782,
            "id": 794948,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 898992000,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
                }
            }
        },
        "teamId": 2845,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    },
    {
        "player": {
            "name": "Alex Gil",
            "slug": "alex-gil",
            "shortName": "A. Gil",
            "position": "M",
            "jerseyNumber": "24",
            "height": 184,
            "userCount": 16,
            "id": 1391442,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1044403200,
            "proposedMarketValueRaw": {
                "value": 94000,
                "currency": "EUR"
            }
        },
        "teamId": 291903,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Legan\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Jasper Cillessen",
            "firstName": "",
            "lastName": "",
            "slug": "jasper-cillessen",
            "shortName": "J. Cillessen",
            "position": "G",
            "jerseyNumber": "1",
            "height": 185,
            "userCount": 1797,
            "id": 123865,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 609206400,
            "proposedMarketValueRaw": {
                "value": 920000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 24,
            "totalLongBalls": 14,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 7,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "goalsPrevented": -0.4702
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marvin Park",
            "firstName": "",
            "lastName": "",
            "slug": "park-marvin",
            "shortName": "M. Park",
            "position": "D",
            "jerseyNumber": "2",
            "height": 177,
            "userCount": 806,
            "id": 960401,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 952387200,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 12,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "duelLost": 5,
            "duelWon": 1,
            "challengeLost": 3,
            "bigChanceCreated": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 76,
            "touches": 34,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.240554
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alex Su\u00e1rez",
            "slug": "alex-suarez",
            "shortName": "A. Su\u00e1rez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 179,
            "userCount": 293,
            "id": 914848,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 725846400,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "ownGoals": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 57,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Mika M\u00e1rmol",
            "firstName": "",
            "lastName": "",
            "slug": "mika-marmol",
            "shortName": "M. M\u00e1rmol",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 867,
            "id": 979146,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 993945600,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 52,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 6.6,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0661,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0387058
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00c1lex Mu\u00f1oz",
            "slug": "alex-munoz",
            "shortName": "\u00c1. Mu\u00f1oz",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 250,
            "id": 273227,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 775526400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 4,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 9,
            "shotOffTarget": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 5,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 69,
            "touches": 63,
            "rating": 7.7,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.0081,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.282752
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Enzo Loiodice",
            "slug": "loiodice-enzo",
            "shortName": "E. Loiodice",
            "position": "M",
            "jerseyNumber": "12",
            "height": 176,
            "userCount": 379,
            "id": 933426,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 975283200,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 35,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 3,
            "duelLost": 2,
            "duelWon": 1,
            "dispossessed": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 69,
            "touches": 57,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0686985
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Kirian Rodr\u00edguez",
            "slug": "kirian-rodriguez",
            "shortName": "K. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 180,
            "userCount": 748,
            "id": 964985,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 825984000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 77,
            "accuratePass": 65,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 89,
            "rating": 7.2,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.008,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0181508
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jaime Mata",
            "slug": "jaime-mata",
            "shortName": "J. Mata",
            "position": "F",
            "jerseyNumber": "17",
            "height": 185,
            "userCount": 529,
            "id": 351140,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 593654400,
            "proposedMarketValueRaw": {
                "value": 855000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u062a\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 6,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 2,
            "shotOffTarget": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 68,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0797,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0149014
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Javier Mu\u00f1oz",
            "slug": "javier-munoz",
            "shortName": "J. Mu\u00f1oz",
            "position": "M",
            "jerseyNumber": "5",
            "height": 179,
            "userCount": 286,
            "id": 353154,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 27,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 3,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.3,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.208,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.267512
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Alberto Moleiro",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-moleiro",
            "shortName": "A. Moleiro",
            "position": "M",
            "jerseyNumber": "10",
            "height": 172,
            "userCount": 2408,
            "id": 1012444,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064880000,
            "proposedMarketValueRaw": {
                "value": 22000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "accurateCross": 1,
            "aerialLost": 2,
            "duelLost": 9,
            "duelWon": 2,
            "totalContest": 8,
            "wonContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 3,
            "blockedScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 36,
            "rating": 6.6,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.3168,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0317666
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Oliver McBurnie",
            "slug": "oliver-mcburnie",
            "shortName": "O. McBurnie",
            "position": "F",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 767,
            "id": 367228,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833846400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "goalAssist": 0,
            "aerialLost": 7,
            "aerialWon": 6,
            "duelLost": 8,
            "duelWon": 8,
            "dispossessed": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 87,
            "touches": 33,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.5163,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0243801
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Sandro Ram\u00edrez",
            "slug": "sandro-ramirez",
            "shortName": "S. Ram\u00edrez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 988,
            "id": 188407,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805248000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 3,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "challengeLost": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 2,
            "minutesPlayed": 22,
            "touches": 12,
            "rating": 7.4,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.2114,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Scott McKenna",
            "firstName": "",
            "lastName": "",
            "slug": "scott-mckenna",
            "shortName": "S. McKenna",
            "position": "D",
            "jerseyNumber": "15",
            "height": 188,
            "userCount": 475,
            "id": 358108,
            "country": {
                "alpha2": "SX",
                "alpha3": "SCO",
                "name": "Scotland",
                "slug": "scotland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 847756800,
            "proposedMarketValueRaw": {
                "value": 8400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 21,
            "touches": 15,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Manuel Fuster",
            "firstName": "",
            "lastName": "",
            "slug": "manuel-fuster",
            "shortName": "M. Fuster",
            "position": "M",
            "jerseyNumber": "14",
            "height": 169,
            "userCount": 268,
            "id": 916654,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 877478400,
            "proposedMarketValueRaw": {
                "value": 2500000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 21,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0623817
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Viti Rozada",
            "slug": "viti-rozada",
            "shortName": "V. Rozada",
            "position": "D",
            "jerseyNumber": "18",
            "height": 171,
            "userCount": 165,
            "id": 1031499,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874368000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 14,
            "touches": 13,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Aboubacar Bassinga",
            "firstName": "Aboubacar",
            "lastName": "Bassinga",
            "slug": "aboubacar-bassinga",
            "shortName": "A. Bassinga",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 77,
            "id": 1636036,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121212800,
            "proposedMarketValueRaw": {
                "value": 97000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 2,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "dispossessed": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 5,
            "rating": 6.4,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Marc Cardona",
            "slug": "marc-cardona",
            "shortName": "M. Cardona",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 240,
            "id": 841854,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805161600,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 1,
            "goalAssist": 0,
            "minutesPlayed": 11,
            "touches": 4,
            "rating": 6.5,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Dinko Horka\u0161",
            "firstName": "",
            "lastName": "",
            "slug": "dinko-horkas",
            "shortName": "D. Horka\u0161",
            "position": "G",
            "jerseyNumber": "13",
            "height": 194,
            "userCount": 270,
            "id": 855922,
            "country": {
                "alpha2": "HR",
                "alpha3": "HRV",
                "name": "Croatia",
                "slug": "croatia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Juanma Herzog",
            "slug": "juanma-herzog",
            "shortName": "J. Herzog",
            "position": "D",
            "jerseyNumber": "28",
            "height": 186,
            "userCount": 185,
            "id": 1513451,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1084406400,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Valentin Pezzolesi",
            "slug": "valentin-pezzolesi",
            "shortName": "V. Pezzolesi",
            "position": "D",
            "jerseyNumber": "27",
            "userCount": 47,
            "id": 1893819,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1176681600
        },
        "teamId": 24369,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Iv\u00e1n Gil",
            "slug": "ivan-gil",
            "shortName": "I. Gil",
            "position": "M",
            "jerseyNumber": "21",
            "height": 168,
            "userCount": 110,
            "id": 1010525,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 948153600,
            "proposedMarketValueRaw": {
                "value": 930000,
                "currency": "EUR"
            }
        },
        "teamId": 6577,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Benito Ram\u00edrez",
            "slug": "benito-ramirez",
            "shortName": "B. Ram\u00edrez",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 87,
            "id": 868223,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 805420800,
            "proposedMarketValueRaw": {
                "value": 650000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "Jos\u00e9 Campa\u00f1a",
            "slug": "jose-campana",
            "shortName": "J. Campa\u00f1a",
            "position": "M",
            "jerseyNumber": "8",
            "height": 179,
            "userCount": 328,
            "id": 96373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 738806400,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
                }
            }
        },
        "teamId": 6577,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Las Palmas"
    },
    {
        "player": {
            "name": "\u00d8rjan Nyland",
            "firstName": "",
            "lastName": "",
            "slug": "orjan-nyland",
            "shortName": "\u00d8. Nyland",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 741,
            "id": 22209,
            "country": {
                "alpha2": "NO",
                "alpha3": "NOR",
                "name": "Norway",
                "slug": "norway"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 652924800,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 22,
            "totalLongBalls": 27,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "totalClearance": 1,
            "savedShotsFromInsideTheBox": 3,
            "saves": 4,
            "punches": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 55,
            "rating": 6.6,
            "possessionLostCtrl": 21,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.8727
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jos\u00e9 \u00c1ngel Carmona",
            "firstName": "",
            "lastName": "",
            "slug": "jose-angel-carmona",
            "shortName": "J. \u00c1. Carmona",
            "position": "D",
            "jerseyNumber": "32",
            "height": 183,
            "userCount": 656,
            "id": 1015240,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 4600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 52,
            "accuratePass": 42,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 9,
            "challengeLost": 2,
            "totalContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 4,
            "wasFouled": 4,
            "minutesPlayed": 90,
            "touches": 84,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.019,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.024425
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Tanguy Nianzou",
            "firstName": "",
            "lastName": "",
            "slug": "tanguy-nianzou",
            "shortName": "T. Nianzou",
            "position": "D",
            "jerseyNumber": "24",
            "height": 192,
            "userCount": 1394,
            "id": 1003007,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1023408000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 60,
            "accuratePass": 56,
            "totalLongBalls": 6,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 7,
            "duelLost": 3,
            "duelWon": 9,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 2,
            "totalClearance": 7,
            "interceptionWon": 1,
            "totalTackle": 1,
            "ownGoals": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 82,
            "rating": 7.1,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1879,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0069712
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Nemanja Gudelj",
            "firstName": "",
            "lastName": "",
            "slug": "nemanja-gudelj",
            "shortName": "N. Gudelj",
            "position": "M",
            "jerseyNumber": "6",
            "height": 187,
            "userCount": 1704,
            "id": 68332,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 690249600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 51,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 3,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 5,
            "shotOffTarget": 1,
            "totalClearance": 5,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0278,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0229199
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Adri\u00e0 Pedrosa",
            "slug": "adria-pedrosa",
            "shortName": "A. Pedrosa",
            "position": "D",
            "jerseyNumber": "3",
            "height": 176,
            "userCount": 568,
            "id": 928672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 895017600,
            "proposedMarketValueRaw": {
                "value": 5800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 33,
            "accuratePass": 26,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 4,
            "totalContest": 2,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 52,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0282,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0982013
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucien Agoum\u00e9",
            "slug": "lucien-agoume",
            "shortName": "L. Agoum\u00e9",
            "position": "M",
            "jerseyNumber": "18",
            "height": 185,
            "userCount": 1269,
            "id": 960006,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1013212800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0623\u063a\u0648\u0645"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 39,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 3,
            "duelWon": 6,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7,
            "possessionLostCtrl": 19,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0883714
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Djibril Sow",
            "slug": "djibril-sow",
            "shortName": "D. Sow",
            "position": "M",
            "jerseyNumber": "20",
            "height": 184,
            "userCount": 957,
            "id": 799054,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 855187200,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0633\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 38,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 7.1,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.4775,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0238621
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lucas Ocampos",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-ocampos",
            "shortName": "L. Ocampos",
            "position": "M",
            "jerseyNumber": "29",
            "height": 187,
            "userCount": 4450,
            "id": 155702,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 773884800,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0648\u0643\u0627\u0645\u0628\u0648\u0633, \u0644\u0648\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0627\u0648\u0643\u0627\u0645\u0628\u0648\u0633"
                }
            }
        },
        "teamId": 1932,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 48,
            "accuratePass": 35,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 3,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 6,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 68,
            "rating": 7,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.1589,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0834737
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Juanlu S\u00e1nchez",
            "firstName": "",
            "lastName": "",
            "slug": "juanlu-sanchez",
            "shortName": "J. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "26",
            "height": 186,
            "userCount": 863,
            "id": 1010655,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1060905600,
            "proposedMarketValueRaw": {
                "value": 14600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 23,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 83,
            "touches": 42,
            "rating": 7.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.6043,
            "keyPass": 4,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0646599
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Dodi Lukebakio",
            "slug": "dodi-lukebakio",
            "shortName": "D. Lukebakio",
            "position": "F",
            "jerseyNumber": "11",
            "height": 187,
            "userCount": 3647,
            "id": 823631,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875059200,
            "proposedMarketValueRaw": {
                "value": 11300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 6,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 2,
            "totalClearance": 1,
            "wasFouled": 2,
            "fouls": 3,
            "minutesPlayed": 74,
            "touches": 32,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.2841,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.211189
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Isaac Romero",
            "firstName": "",
            "lastName": "",
            "slug": "romero-isaac",
            "shortName": "I. Romero",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1487,
            "id": 1018190,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958608000,
            "proposedMarketValueRaw": {
                "value": 18500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 15,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 1,
            "aerialLost": 1,
            "aerialWon": 4,
            "duelLost": 3,
            "duelWon": 6,
            "dispossessed": 2,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 83,
            "touches": 34,
            "rating": 7.2,
            "possessionLostCtrl": 11,
            "expectedGoals": 0.0609,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.564565
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Jes\u00fas Navas",
            "slug": "jesus-navas",
            "shortName": "J. Navas",
            "position": "D",
            "jerseyNumber": "16",
            "height": 170,
            "userCount": 2495,
            "id": 11869,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 501379200,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 3,
            "minutesPlayed": 16,
            "touches": 21,
            "rating": 7.2,
            "possessionLostCtrl": 2,
            "keyPass": 3,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.325458
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Kike Salas",
            "firstName": "",
            "lastName": "",
            "slug": "kike-salas",
            "shortName": "K. Salas",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 537,
            "id": 1097719,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1009843200,
            "proposedMarketValueRaw": {
                "value": 8800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 1,
            "minutesPlayed": 15,
            "touches": 16,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Peque Fern\u00e1ndez",
            "slug": "peque-fernandez",
            "shortName": "P. Fern\u00e1ndez",
            "position": "M",
            "jerseyNumber": "14",
            "height": 168,
            "userCount": 867,
            "id": 997033,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033689600,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 1,
            "fouls": 1,
            "minutesPlayed": 15,
            "touches": 7,
            "rating": 6.6,
            "possessionLostCtrl": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00886284
        },
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Flores",
            "firstName": "",
            "lastName": "",
            "slug": "alberto-flores",
            "shortName": "A. Flores",
            "position": "G",
            "jerseyNumber": "13",
            "height": 187,
            "userCount": 97,
            "id": 1108577,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068422400,
            "proposedMarketValueRaw": {
                "value": 320000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 7762,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "\u00c1lvaro Fern\u00e1ndez",
            "slug": "alvaro-fernandez",
            "shortName": "\u00c1. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "1",
            "height": 186,
            "userCount": 259,
            "id": 852412,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 892425600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            }
        },
        "teamId": 2833,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Lo\u00efc Bad\u00e9",
            "firstName": "",
            "lastName": "",
            "slug": "loic-bade",
            "shortName": "L. Bad\u00e9",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 2145,
            "id": 1006489,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 955411200,
            "proposedMarketValueRaw": {
                "value": 19400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0628\u0627\u062f\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Marc\u00e3o",
            "slug": "marcao",
            "shortName": "Marc\u00e3o",
            "position": "D",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 890,
            "id": 840951,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 833932800,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Gonzalo Montiel",
            "slug": "gonzalo-montiel",
            "shortName": "G. Montiel",
            "position": "D",
            "jerseyNumber": "15",
            "height": 175,
            "userCount": 9011,
            "id": 822933,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 852076800,
            "proposedMarketValueRaw": {
                "value": 8600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Chidera Ejuke",
            "firstName": "",
            "lastName": "",
            "slug": "chidera-ejuke",
            "shortName": "C. Ejuke",
            "position": "M",
            "jerseyNumber": "21",
            "height": 176,
            "userCount": 1476,
            "id": 875890,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883699200,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
                }
            }
        },
        "teamId": 2833,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Pablo Rivera",
            "slug": "pablo-rivera",
            "shortName": "P. Rivera",
            "position": "M",
            "jerseyNumber": "6",
            "height": 178,
            "userCount": 36,
            "id": 1142100,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1073779200,
            "proposedMarketValueRaw": {
                "value": 145000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Alberto Collado",
            "firstName": "Alberto Collado",
            "slug": "collado-alberto",
            "shortName": "A. Collado",
            "position": "M",
            "jerseyNumber": "10",
            "userCount": 64,
            "id": 1402673,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1113609600,
            "proposedMarketValueRaw": {
                "value": 105000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    },
    {
        "player": {
            "name": "Stanis Idumbo Muzambo",
            "firstName": "Stanis Idumbo Muzambo",
            "lastName": "",
            "slug": "stanis-idumbo-muzambo",
            "shortName": "S. I. Muzambo",
            "position": "F",
            "jerseyNumber": "27",
            "height": 170,
            "userCount": 614,
            "id": 1149152,
            "country": {
                "alpha2": "BE",
                "alpha3": "BEL",
                "name": "Belgium",
                "slug": "belgium"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1120003200,
            "proposedMarketValueRaw": {
                "value": 755000,
                "currency": "EUR"
            }
        },
        "teamId": 7762,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Sevilla"
    }
]
[
    {
        "player": {
            "name": "Iv\u00e1n Villar",
            "slug": "ivan-villar",
            "shortName": "I. Villar",
            "position": "G",
            "jerseyNumber": "1",
            "height": 183,
            "userCount": 241,
            "id": 848980,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868406400,
            "proposedMarketValueRaw": {
                "value": 1300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 17,
            "totalLongBalls": 4,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "goalsPrevented": -0.0228
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javier Manquillo",
            "slug": "javier-manquillo",
            "shortName": "J. Manquillo",
            "position": "D",
            "jerseyNumber": "22",
            "height": 180,
            "userCount": 275,
            "id": 210082,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 768096000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 35,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "minutesPlayed": 45,
            "touches": 45,
            "rating": 6.4,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carl Starfelt",
            "slug": "carl-starfelt",
            "shortName": "C. Starfelt",
            "position": "D",
            "jerseyNumber": "2",
            "height": 185,
            "userCount": 556,
            "id": 360718,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 801964800,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 58,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalClearance": 1,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 63,
            "rating": 6.7,
            "possessionLostCtrl": 1,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Carlos Dom\u00ednguez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-dominguez",
            "shortName": "C. Dom\u00ednguez",
            "position": "D",
            "jerseyNumber": "24",
            "height": 187,
            "userCount": 198,
            "id": 1069703,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 92,
            "accuratePass": 79,
            "totalLongBalls": 7,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 7,
            "duelLost": 1,
            "duelWon": 7,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "minutesPlayed": 90,
            "touches": 102,
            "rating": 7,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0154306
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo \u00c1lvarez",
            "firstName": "Hugo \u00c1lvarez",
            "slug": "hugo-alvarez",
            "shortName": "H. \u00c1lvarez",
            "position": "M",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 554,
            "id": 1154935,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1057104000,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 32,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 2,
            "aerialWon": 1,
            "duelLost": 7,
            "duelWon": 8,
            "dispossessed": 1,
            "totalContest": 6,
            "wonContest": 2,
            "totalClearance": 2,
            "totalTackle": 3,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.9,
            "possessionLostCtrl": 20,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0647193
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Dami\u00e1n Rodr\u00edguez",
            "slug": "damian-rodriguez",
            "shortName": "D. Rodr\u00edguez",
            "position": "M",
            "jerseyNumber": "25",
            "height": 180,
            "userCount": 179,
            "id": 1216080,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1047859200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 28,
        "jerseyNumber": "28",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 49,
            "accuratePass": 44,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 2,
            "totalClearance": 1,
            "interceptionWon": 3,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 59,
            "rating": 6.8,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0295585
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Fran Beltr\u00e1n",
            "slug": "fran-beltran",
            "shortName": "F. Beltr\u00e1n",
            "position": "M",
            "jerseyNumber": "8",
            "height": 170,
            "userCount": 619,
            "id": 835484,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918000000,
            "proposedMarketValueRaw": {
                "value": 6300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 37,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 2,
            "dispossessed": 3,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 65,
            "touches": 55,
            "rating": 6.4,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0263,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0107414
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "\u00d3scar Mingueza",
            "firstName": "",
            "lastName": "",
            "slug": "oscar-mingueza",
            "shortName": "\u00d3. Mingueza",
            "position": "D",
            "jerseyNumber": "3",
            "height": 184,
            "userCount": 3190,
            "id": 859773,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926553600,
            "proposedMarketValueRaw": {
                "value": 12500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Mingueza, \u00d3scar"
                },
                "shortNameTranslation": {
                    "ar": "\u00d3. Mingueza"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 57,
            "accuratePass": 46,
            "totalLongBalls": 10,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "totalCross": 5,
            "duelWon": 4,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 85,
            "rating": 7.6,
            "possessionLostCtrl": 20,
            "expectedGoals": 0.035,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.404599
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Iago Aspas",
            "slug": "iago-aspas",
            "shortName": "I. Aspas",
            "position": "F",
            "jerseyNumber": "10",
            "height": 176,
            "userCount": 5352,
            "id": 19356,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 554774400,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 24,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 4,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 2,
            "goals": 1,
            "totalClearance": 2,
            "wasFouled": 3,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7.4,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.6993,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0781161
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jonathan Bamba",
            "slug": "jonathan-bamba",
            "shortName": "J. Bamba",
            "position": "F",
            "jerseyNumber": "17",
            "height": 175,
            "userCount": 3211,
            "id": 595576,
            "country": {
                "alpha2": "CI",
                "alpha3": "CIV",
                "name": "C\u00f4te d'Ivoire",
                "slug": "cote-divoire"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827798400,
            "proposedMarketValueRaw": {
                "value": 6500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 16,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 28,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0341056
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Anastasios Douvikas",
            "slug": "douvikas-anastasios",
            "shortName": "A. Douvikas",
            "position": "F",
            "jerseyNumber": "9",
            "height": 184,
            "userCount": 2014,
            "id": 894863,
            "country": {
                "alpha2": "GR",
                "alpha3": "GRC",
                "name": "Greece",
                "slug": "greece"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 933552000,
            "proposedMarketValueRaw": {
                "value": 5700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 11,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 8,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 78,
            "touches": 27,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.120681
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Javi Rodr\u00edguez",
            "slug": "javi-rodriguez",
            "shortName": "J. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "32",
            "userCount": 224,
            "id": 1526627,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1056585600,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 39,
            "rating": 7.2,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0105204
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Jailson",
            "firstName": "",
            "lastName": "",
            "slug": "jailson",
            "shortName": "Jailson",
            "position": "M",
            "jerseyNumber": "16",
            "height": 187,
            "userCount": 515,
            "id": 794861,
            "country": {
                "alpha2": "BR",
                "alpha3": "BRA",
                "name": "Brazil",
                "slug": "brazil"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 810432000,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c\u0627\u062c\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 30,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 3,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 1,
            "minutesPlayed": 45,
            "touches": 49,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00931891
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Williot Swedberg",
            "firstName": "",
            "lastName": "",
            "slug": "williot-swedberg",
            "shortName": "W. Swedberg",
            "position": "M",
            "jerseyNumber": "19",
            "height": 185,
            "userCount": 1259,
            "id": 1126779,
            "country": {
                "alpha2": "SE",
                "alpha3": "SWE",
                "name": "Sweden",
                "slug": "sweden"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075593600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 1,
            "duelLost": 1,
            "duelWon": 1,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 45,
            "touches": 17,
            "rating": 8,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.0699,
            "keyPass": 1,
            "ratingVersions": {
                "original": 8,
                "alternative": null
            },
            "expectedAssists": 0.171243
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Ilaix Moriba",
            "slug": "ilaix-moriba",
            "shortName": "I. Moriba",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 6688,
            "id": 962890,
            "country": {
                "alpha2": "GN",
                "alpha3": "GIN",
                "name": "Guinea",
                "slug": "guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1042934400,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Ilaix, Moriba"
                },
                "shortNameTranslation": {
                    "ar": "M. Ilaix"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 12,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 6,
            "challengeLost": 1,
            "totalContest": 1,
            "totalTackle": 4,
            "wasFouled": 1,
            "minutesPlayed": 25,
            "touches": 24,
            "rating": 7,
            "possessionLostCtrl": 5,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0641779
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Borja Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "borja-iglesias",
            "shortName": "B. Iglesias",
            "position": "F",
            "jerseyNumber": "7",
            "height": 187,
            "userCount": 2360,
            "id": 785989,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 727228800,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 2,
            "goalAssist": 0,
            "duelWon": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 12,
            "touches": 12,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Marc Vidal",
            "firstName": "",
            "lastName": "",
            "slug": "marc-vidal",
            "shortName": "M. Vidal",
            "position": "G",
            "jerseyNumber": "13",
            "height": 183,
            "userCount": 170,
            "id": 905443,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 950486400,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "C\u00e9sar Fern\u00e1ndez",
            "firstName": "Cesar Fernandez",
            "slug": "cesar-fernandez",
            "shortName": "C. Fern\u00e1ndez",
            "position": "G",
            "jerseyNumber": "25",
            "height": 181,
            "userCount": 14,
            "id": 1191206,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1075248000,
            "proposedMarketValueRaw": {
                "value": 180000,
                "currency": "EUR"
            }
        },
        "teamId": 24336,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Joseph Aidoo",
            "firstName": "",
            "lastName": "",
            "slug": "joseph-aidoo",
            "shortName": "J. Aidoo",
            "position": "D",
            "jerseyNumber": "15",
            "height": 184,
            "userCount": 930,
            "id": 796320,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812332800,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0627\u064a\u062f\u0648"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Sergio Carreira",
            "firstName": "",
            "lastName": "",
            "slug": "sergio-carreira",
            "shortName": "S. Carreira",
            "position": "D",
            "jerseyNumber": "5",
            "height": 170,
            "userCount": 95,
            "id": 1002764,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 971395200,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2821,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Hugo Sotelo",
            "firstName": "Hugo Sotelo",
            "slug": "hugo-sotelo",
            "shortName": "H. Sotelo",
            "position": "M",
            "jerseyNumber": "33",
            "height": 180,
            "userCount": 303,
            "id": 1120669,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1071792000,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Pablo Dur\u00e1n",
            "firstName": "Pablo Dur\u00e1n",
            "lastName": "",
            "slug": "pablo-duran",
            "shortName": "P. Dur\u00e1n",
            "position": "F",
            "jerseyNumber": "18",
            "height": 176,
            "userCount": 113,
            "id": 1398524,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 990748800,
            "proposedMarketValueRaw": {
                "value": 310000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Alfon Gonz\u00e1lez",
            "slug": "alfon-gonzalez",
            "shortName": "A. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "12",
            "height": 172,
            "userCount": 122,
            "id": 1468090,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925776000,
            "proposedMarketValueRaw": {
                "value": 330000,
                "currency": "EUR"
            }
        },
        "teamId": 2821,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "W",
        "team": "Celta Vigo"
    },
    {
        "player": {
            "name": "Antonio Sivera",
            "slug": "antonio-sivera",
            "shortName": "A. Sivera",
            "position": "G",
            "jerseyNumber": "1",
            "height": 184,
            "userCount": 437,
            "id": 369004,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839721600,
            "proposedMarketValueRaw": {
                "value": 5600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 31,
            "accuratePass": 11,
            "totalLongBalls": 30,
            "accurateLongBalls": 10,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 1,
            "saves": 2,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 34,
            "rating": 6.4,
            "possessionLostCtrl": 20,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "goalsPrevented": -0.2629
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Vicente",
            "firstName": "",
            "lastName": "",
            "slug": "vicente-carlos",
            "shortName": "C. Vicente",
            "position": "M",
            "jerseyNumber": "7",
            "height": 179,
            "userCount": 620,
            "id": 1084399,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924825600,
            "proposedMarketValueRaw": {
                "value": 8500000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "interceptionWon": 2,
            "totalTackle": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 10,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0690504
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Abdelkabir Abqar",
            "slug": "abqar-abdelkabir",
            "shortName": "A. Abqar",
            "position": "D",
            "jerseyNumber": "5",
            "height": 188,
            "userCount": 3768,
            "id": 1101232,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 921024000,
            "proposedMarketValueRaw": {
                "value": 7100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 16,
            "totalLongBalls": 13,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 8,
            "duelWon": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "fouls": 8,
            "minutesPlayed": 90,
            "touches": 35,
            "rating": 6,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Nahuel Tenaglia",
            "slug": "nahuel-tenaglia",
            "shortName": "N. Tenaglia",
            "position": "D",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 523,
            "id": 896073,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824860800,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "totalLongBalls": 6,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "duelWon": 3,
            "totalContest": 1,
            "totalClearance": 4,
            "lastManTackle": 1,
            "totalTackle": 3,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Moussa Diarra",
            "slug": "diarra-moussa",
            "shortName": "M. Diarra",
            "position": "D",
            "jerseyNumber": "22",
            "height": 183,
            "userCount": 762,
            "id": 985262,
            "country": {
                "alpha2": "ML",
                "alpha3": "MLI",
                "name": "Mali",
                "slug": "mali"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 973814400,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 24,
            "accuratePass": 19,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 2,
            "dispossessed": 3,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 45,
            "rating": 6.1,
            "possessionLostCtrl": 13,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.0134096
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Ander Guevara",
            "slug": "ander-guevara",
            "shortName": "A. Guevara",
            "position": "M",
            "jerseyNumber": "6",
            "height": 180,
            "userCount": 326,
            "id": 891931,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 868233600,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 41,
            "accuratePass": 33,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalContest": 2,
            "wonContest": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 80,
            "touches": 54,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0132518
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Antonio Blanco",
            "firstName": "",
            "lastName": "",
            "slug": "antonio-blanco",
            "shortName": "A. Blanco",
            "position": "M",
            "jerseyNumber": "8",
            "height": 176,
            "userCount": 1501,
            "id": 855832,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 964310400,
            "proposedMarketValueRaw": {
                "value": 7300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 35,
            "accuratePass": 31,
            "totalLongBalls": 7,
            "accurateLongBalls": 3,
            "goalAssist": 1,
            "duelLost": 4,
            "duelWon": 5,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 2,
            "totalTackle": 2,
            "wasFouled": 3,
            "fouls": 4,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7.3,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.059,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.200143
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luka Romero",
            "firstName": "Luka Romero",
            "lastName": "",
            "slug": "luka-romero",
            "shortName": "L. Romero",
            "position": "M",
            "jerseyNumber": "20",
            "height": 165,
            "userCount": 6930,
            "id": 1032022,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1100736000,
            "proposedMarketValueRaw": {
                "value": 5400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "goalAssist": 0,
            "totalCross": 3,
            "accurateCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 5,
            "duelWon": 3,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 58,
            "touches": 22,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.194682
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jon Guridi",
            "slug": "jon-guridi",
            "shortName": "J. Guridi",
            "position": "M",
            "jerseyNumber": "18",
            "height": 179,
            "userCount": 365,
            "id": 788141,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 793929600,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 68,
            "touches": 31,
            "rating": 6.6,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0265,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0127796
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Tom\u00e1s Conechny",
            "slug": "tomas-conechny",
            "shortName": "T. Conechny",
            "position": "M",
            "jerseyNumber": "10",
            "height": 170,
            "userCount": 560,
            "id": 822607,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 8,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 4,
            "challengeLost": 4,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 68,
            "touches": 28,
            "rating": 6.2,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.0486399
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Kike Garc\u00eda",
            "slug": "kike-garcia",
            "shortName": "K. Garc\u00eda",
            "position": "F",
            "jerseyNumber": "17",
            "height": 186,
            "userCount": 644,
            "id": 84972,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 627955200,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643\u064a\u0643\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 8,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 5,
            "aerialWon": 2,
            "duelLost": 8,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 1,
            "shotOffTarget": 2,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "fouls": 2,
            "minutesPlayed": 80,
            "touches": 24,
            "rating": 7.4,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.5623,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            }
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Hugo Novoa Ramos",
            "firstName": "",
            "lastName": "",
            "slug": "hugo-novoa-ramos",
            "shortName": "H. N. Ramos",
            "position": "M",
            "jerseyNumber": "16",
            "height": 182,
            "userCount": 346,
            "id": 1001967,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1043366400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 3,
            "wonContest": 2,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "totalClearance": 1,
            "fouls": 1,
            "minutesPlayed": 32,
            "touches": 18,
            "rating": 6.4,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.4866,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0142004
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Luis Rioja",
            "slug": "luis-rioja",
            "shortName": "L. Rioja",
            "position": "M",
            "jerseyNumber": "22",
            "height": 173,
            "userCount": 722,
            "id": 900433,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 750729600,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
                }
            }
        },
        "teamId": 2828,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 4,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "duelLost": 2,
            "duelWon": 3,
            "challengeLost": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 22,
            "touches": 17,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.144234
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Stoichkov",
            "slug": "stoichkov",
            "shortName": "Stoichkov",
            "position": "M",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 417,
            "id": 566894,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 752457600,
            "proposedMarketValueRaw": {
                "value": 3900000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 3,
            "duelWon": 1,
            "totalContest": 2,
            "bigChanceMissed": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "minutesPlayed": 22,
            "touches": 14,
            "rating": 6.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1376,
            "ratingVersions": {
                "original": 6.1,
                "alternative": null
            },
            "expectedAssists": 0.00946605
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Carlos Benav\u00eddez",
            "firstName": "",
            "lastName": "",
            "slug": "carlos-benavidez",
            "shortName": "C. Benav\u00eddez",
            "position": "M",
            "jerseyNumber": "23",
            "height": 185,
            "userCount": 350,
            "id": 873717,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 891216000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Benavidez Protesoni, Carlos Nahuel"
                },
                "shortNameTranslation": {
                    "ar": "C. N. B. Protesoni"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 3,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 6,
            "rating": 6.7,
            "possessionLostCtrl": 3,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.133879
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Asier Villalibre",
            "slug": "asier-villalibre",
            "shortName": "A. Villalibre",
            "position": "F",
            "jerseyNumber": "9",
            "height": 183,
            "userCount": 615,
            "id": 355072,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 875577600,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 3,
            "accuratePass": 3,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "duelLost": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "fouls": 1,
            "minutesPlayed": 10,
            "touches": 4,
            "rating": 6.2,
            "expectedGoals": 0.3324,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            },
            "expectedAssists": 0.00721121
        },
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Jes\u00fas Owono",
            "firstName": "",
            "lastName": "",
            "slug": "jesus-owono",
            "shortName": "J. Owono",
            "position": "G",
            "jerseyNumber": "13",
            "height": 181,
            "userCount": 361,
            "id": 990659,
            "country": {
                "alpha2": "GQ",
                "alpha3": "GNQ",
                "name": "Equatorial Guinea",
                "slug": "equatorial-guinea"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 983404800,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Rodr\u00edguez",
            "slug": "adrian-rodriguez",
            "shortName": "A. Rodr\u00edguez",
            "position": "G",
            "jerseyNumber": "31",
            "height": 195,
            "userCount": 112,
            "id": 965822,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 976579200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Aleksandar Sedlar",
            "slug": "aleksandar-sedlar",
            "shortName": "A. Sedlar",
            "position": "D",
            "jerseyNumber": "4",
            "height": 180,
            "userCount": 166,
            "id": 799195,
            "country": {
                "alpha2": "RS",
                "alpha3": "SRB",
                "name": "Serbia",
                "slug": "serbia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 692582400,
            "proposedMarketValueRaw": {
                "value": 375000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
                }
            }
        },
        "teamId": 2885,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Eneko Ortiz",
            "firstName": "Eneko Ortiz",
            "lastName": "",
            "slug": "eneko-ortiz",
            "shortName": "E. Ortiz",
            "position": "D",
            "jerseyNumber": "34",
            "userCount": 13,
            "id": 1120373,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053907200,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 254356,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Adri\u00e1n Pica",
            "slug": "adrian-hernandez-pica",
            "shortName": "A. H. Pica",
            "position": "D",
            "jerseyNumber": "36",
            "height": 190,
            "userCount": 66,
            "id": 1122488,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1019692800,
            "proposedMarketValueRaw": {
                "value": 520000,
                "currency": "EUR"
            }
        },
        "teamId": 2885,
        "shirtNumber": 36,
        "jerseyNumber": "36",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Julen Lartitegi",
            "slug": "julen-lartitegi",
            "shortName": "J. Lartitegi",
            "position": "F",
            "jerseyNumber": "37",
            "height": 184,
            "userCount": 8,
            "id": 1636838,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1064793600,
            "proposedMarketValueRaw": {
                "value": 52000,
                "currency": "EUR"
            }
        },
        "teamId": 254356,
        "shirtNumber": 37,
        "jerseyNumber": "37",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    },
    {
        "player": {
            "name": "Joaquin Panichelli",
            "firstName": "Joaqu\u00edn Panichelli",
            "lastName": "",
            "slug": "panichelli-joaquin",
            "shortName": "J. Panichelli",
            "position": "F",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 336,
            "id": 1410925,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1033948800,
            "proposedMarketValueRaw": {
                "value": 725000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 29,
        "jerseyNumber": "29",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "L",
        "team": "Deportivo Alav\u00e9s"
    }
]
[
    {
        "player": {
            "name": "Rui Silva",
            "slug": "rui-silva",
            "shortName": "R. Silva",
            "position": "G",
            "jerseyNumber": "1",
            "height": 191,
            "userCount": 1311,
            "id": 253809,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760579200,
            "proposedMarketValueRaw": {
                "value": 7600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 30,
            "totalLongBalls": 12,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelWon": 1,
            "wasFouled": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "minutesPlayed": 90,
            "touches": 44,
            "rating": 6.6,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.011
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Youssouf Sabaly",
            "firstName": "",
            "lastName": "",
            "slug": "youssouf-sabaly",
            "shortName": "Y. Sabaly",
            "position": "D",
            "jerseyNumber": "23",
            "height": 174,
            "userCount": 4769,
            "id": 111803,
            "country": {
                "alpha2": "SN",
                "alpha3": "SEN",
                "name": "Senegal",
                "slug": "senegal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 731289600,
            "proposedMarketValueRaw": {
                "value": 2400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 23,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 2,
            "duelLost": 1,
            "duelWon": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 3,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 48,
            "rating": 7,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.1104,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            },
            "expectedAssists": 0.0130409
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Bartra",
            "slug": "marc-bartra",
            "shortName": "M. Bartra",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 1069,
            "id": 99519,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 663897600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 44,
            "accuratePass": 38,
            "totalLongBalls": 12,
            "accurateLongBalls": 7,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 1,
            "duelWon": 2,
            "dispossessed": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 58,
            "rating": 7.6,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1674,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.0089912
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Diego Llorente",
            "slug": "diego-llorente",
            "shortName": "D. Llorente",
            "position": "D",
            "jerseyNumber": "3",
            "height": 185,
            "userCount": 1033,
            "id": 305278,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 745459200,
            "proposedMarketValueRaw": {
                "value": 7200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 53,
            "accuratePass": 44,
            "totalLongBalls": 9,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 5,
            "outfielderBlock": 2,
            "interceptionWon": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 63,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Romain Perraud",
            "slug": "romain-perraud",
            "shortName": "R. Perraud",
            "position": "D",
            "jerseyNumber": "15",
            "height": 173,
            "userCount": 397,
            "id": 827519,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 874886400,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 25,
            "accuratePass": 16,
            "totalLongBalls": 5,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 1,
            "duelLost": 9,
            "duelWon": 5,
            "challengeLost": 3,
            "dispossessed": 2,
            "totalContest": 3,
            "wonContest": 2,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 4,
            "interceptionWon": 1,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 2,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 53,
            "rating": 6.3,
            "possessionLostCtrl": 15,
            "expectedGoals": 0.0665,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.00681203
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "William Carvalho",
            "slug": "william-carvalho",
            "shortName": "W. Carvalho",
            "position": "M",
            "jerseyNumber": "14",
            "height": 187,
            "userCount": 1722,
            "id": 137978,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 702604800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648, \u0648\u064a\u0644\u064a\u0627\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 31,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "minutesPlayed": 77,
            "touches": 44,
            "rating": 6.9,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.1099,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.016218
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Marc Roca",
            "slug": "marc-roca",
            "shortName": "M. Roca",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 1174,
            "id": 847128,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 848966400,
            "proposedMarketValueRaw": {
                "value": 9500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0631\u0648\u0643\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 14,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalClearance": 4,
            "interceptionWon": 1,
            "minutesPlayed": 77,
            "touches": 23,
            "rating": 6.7,
            "possessionLostCtrl": 4,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Pablo Fornals",
            "slug": "pablo-fornals",
            "shortName": "P. Fornals",
            "position": "M",
            "jerseyNumber": "18",
            "height": 178,
            "userCount": 1625,
            "id": 816763,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 824947200,
            "proposedMarketValueRaw": {
                "value": 14700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 15,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 1,
            "challengeLost": 1,
            "totalContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "interceptionWon": 2,
            "totalTackle": 1,
            "errorLeadToAShot": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 29,
            "rating": 6.6,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0967,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0397455
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Nabil Fekir",
            "slug": "nabil-fekir",
            "shortName": "N. Fekir",
            "position": "M",
            "jerseyNumber": "20",
            "height": 173,
            "userCount": 4538,
            "id": 337671,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 742953600,
            "proposedMarketValueRaw": {
                "value": 9700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u0642\u064a\u0631, \u0646\u0628\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0646. \u0641\u0642\u064a\u0631"
                }
            }
        },
        "teamId": 8090,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 25,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 1,
            "totalCross": 7,
            "accurateCross": 4,
            "duelLost": 5,
            "duelWon": 6,
            "challengeLost": 1,
            "dispossessed": 2,
            "totalContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 2,
            "totalTackle": 3,
            "wasFouled": 3,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 50,
            "rating": 7.9,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0415,
            "keyPass": 5,
            "ratingVersions": {
                "original": 7.9,
                "alternative": null
            },
            "expectedAssists": 0.667958
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Juanmi",
            "firstName": "",
            "lastName": "",
            "slug": "juanmi",
            "shortName": "Juanmi",
            "position": "F",
            "jerseyNumber": "7",
            "height": 169,
            "userCount": 634,
            "id": 96369,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 737856000,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 2,
            "duelLost": 6,
            "duelWon": 7,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 3,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 59,
            "touches": 30,
            "rating": 7.2,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.1048,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0348167
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Aitor Ruibal",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-ruibal",
            "shortName": "A. Ruibal",
            "position": "D",
            "jerseyNumber": "24",
            "height": 176,
            "userCount": 393,
            "id": 893062,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 827452800,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 11,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 1,
            "dispossessed": 3,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "totalTackle": 1,
            "fouls": 1,
            "minutesPlayed": 70,
            "touches": 26,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.3712,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0346449
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Rodri S\u00e1nchez",
            "slug": "rodri-sanchez",
            "shortName": "R. S\u00e1nchez",
            "position": "M",
            "jerseyNumber": "10",
            "height": 175,
            "userCount": 652,
            "id": 1031421,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 958435200,
            "proposedMarketValueRaw": {
                "value": 2600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a"
                }
            }
        },
        "teamId": 44444,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 10,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelLost": 5,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "interceptionWon": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 31,
            "touches": 28,
            "rating": 6.7,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.1438,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0351305
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Abdessamad Ezzalzouli",
            "firstName": "",
            "lastName": "",
            "slug": "abdessamad-ezzalzouli",
            "shortName": "A. Ezzalzouli",
            "position": "M",
            "jerseyNumber": "10",
            "height": 177,
            "userCount": 27290,
            "id": 1011375,
            "country": {
                "alpha2": "MA",
                "alpha3": "MAR",
                "name": "Morocco",
                "slug": "morocco"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1008547200,
            "proposedMarketValueRaw": {
                "value": 12800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 8,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "interceptionWon": 1,
            "totalTackle": 3,
            "minutesPlayed": 31,
            "touches": 21,
            "rating": 7,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Chimy \u00c1vila",
            "firstName": "",
            "lastName": "",
            "slug": "chimy-avila",
            "shortName": "C. \u00c1vila",
            "position": "F",
            "jerseyNumber": "9",
            "height": 171,
            "userCount": 1700,
            "id": 789381,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 760492800,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 5,
            "accuratePass": 5,
            "goalAssist": 0,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "minutesPlayed": 20,
            "touches": 7,
            "rating": 6.9,
            "expectedGoals": 0.0696,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.01387
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Sergi Altimira",
            "firstName": "",
            "lastName": "",
            "slug": "sergi-altimira",
            "shortName": "S. Altimira",
            "position": "M",
            "jerseyNumber": "16",
            "height": 188,
            "userCount": 405,
            "id": 1137814,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 998697600,
            "proposedMarketValueRaw": {
                "value": 3400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 18,
            "totalLongBalls": 3,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "minutesPlayed": 13,
            "touches": 23,
            "rating": 6.9,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00860051
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Johnny",
            "firstName": "",
            "lastName": "",
            "slug": "johnny",
            "shortName": "Johnny",
            "position": "M",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 2179,
            "id": 990169,
            "country": {
                "alpha2": "US",
                "alpha3": "USA",
                "name": "USA",
                "slug": "usa"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1000944000,
            "proposedMarketValueRaw": {
                "value": 18700000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 10,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "shotOffTarget": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "fouls": 1,
            "minutesPlayed": 13,
            "touches": 16,
            "rating": 7,
            "expectedGoals": 0.0998,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Adri\u00e1n",
            "firstName": "",
            "lastName": "",
            "slug": "adrian",
            "shortName": "Adri\u00e1n",
            "position": "G",
            "jerseyNumber": "13",
            "height": 190,
            "userCount": 2521,
            "id": 50539,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 536630400,
            "proposedMarketValueRaw": {
                "value": 620000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Francisco Vieites",
            "slug": "francisco-vieites",
            "shortName": "F. Vieites",
            "position": "G",
            "jerseyNumber": "25",
            "height": 196,
            "userCount": 170,
            "id": 929975,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 926035200,
            "proposedMarketValueRaw": {
                "value": 450000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 25,
        "jerseyNumber": "25",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Lucas Alcazar",
            "firstName": "",
            "lastName": "",
            "slug": "lucas-alcazar",
            "shortName": "L. Alc\u00e1zar",
            "position": "D",
            "jerseyNumber": "3",
            "height": 181,
            "userCount": 71,
            "id": 1049200,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026345600,
            "proposedMarketValueRaw": {
                "value": 140000,
                "currency": "EUR"
            }
        },
        "teamId": 24358,
        "shirtNumber": 43,
        "jerseyNumber": "43",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Ricardo Rodr\u00edguez",
            "slug": "ricardo-rodriguez",
            "shortName": "R. Rodr\u00edguez",
            "position": "D",
            "jerseyNumber": "12",
            "height": 182,
            "userCount": 1293,
            "id": 67769,
            "country": {
                "alpha2": "CH",
                "alpha3": "CHE",
                "name": "Switzerland",
                "slug": "switzerland"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 714700800,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "H\u00e9ctor Beller\u00edn",
            "slug": "hector-bellerin",
            "shortName": "H. Beller\u00edn",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 3575,
            "id": 188365,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 795571200,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Iker Losada",
            "slug": "iker-losada",
            "shortName": "I. Losada",
            "position": "M",
            "jerseyNumber": "19",
            "height": 175,
            "userCount": 266,
            "id": 992331,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996624000,
            "proposedMarketValueRaw": {
                "value": 2000000,
                "currency": "EUR"
            }
        },
        "teamId": 2816,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Assane Diao",
            "firstName": "",
            "lastName": "",
            "slug": "assane-diao",
            "shortName": "A. Diao",
            "position": "M",
            "jerseyNumber": "38",
            "height": 185,
            "userCount": 1666,
            "id": 1493689,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1126051200,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Diao Diaoune, Assane"
                },
                "shortNameTranslation": {
                    "ar": "A. D. Diaoune"
                }
            }
        },
        "teamId": 2816,
        "shirtNumber": 38,
        "jerseyNumber": "38",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Real Betis"
    },
    {
        "player": {
            "name": "Paulo Gazzaniga",
            "slug": "paulo-gazzaniga",
            "shortName": "P. Gazzaniga",
            "position": "G",
            "jerseyNumber": "13",
            "height": 196,
            "userCount": 1954,
            "id": 164343,
            "country": {
                "alpha2": "AR",
                "alpha3": "ARG",
                "name": "Argentina",
                "slug": "argentina"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694310400,
            "proposedMarketValueRaw": {
                "value": 4099999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 39,
            "accuratePass": 27,
            "totalLongBalls": 13,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "savedShotsFromInsideTheBox": 3,
            "saves": 3,
            "totalKeeperSweeper": 1,
            "accurateKeeperSweeper": 1,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.9,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "goalsPrevented": 0.348
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Arnau Mart\u00ednez",
            "firstName": "Arnau Martinez",
            "slug": "arnau-martinez",
            "shortName": "A. Mart\u00ednez",
            "position": "D",
            "jerseyNumber": "4",
            "height": 181,
            "userCount": 1610,
            "id": 1084081,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1051228800,
            "proposedMarketValueRaw": {
                "value": 10800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 75,
            "accuratePass": 66,
            "totalLongBalls": 5,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 2,
            "duelWon": 2,
            "totalClearance": 2,
            "totalTackle": 2,
            "errorLeadToAShot": 1,
            "minutesPlayed": 90,
            "touches": 92,
            "rating": 6.8,
            "possessionLostCtrl": 12,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.014028
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "David L\u00f3pez",
            "slug": "david-lopez",
            "shortName": "D. L\u00f3pez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 185,
            "userCount": 745,
            "id": 135116,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 623894400,
            "proposedMarketValueRaw": {
                "value": 2300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 58,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "totalClearance": 4,
            "outfielderBlock": 2,
            "totalTackle": 2,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.9,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Daley Blind",
            "firstName": "",
            "lastName": "",
            "slug": "daley-blind",
            "shortName": "D. Blind",
            "position": "D",
            "jerseyNumber": "17",
            "height": 180,
            "userCount": 3328,
            "id": 44864,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 636940800,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 80,
            "accuratePass": 71,
            "totalLongBalls": 9,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 7,
            "totalContest": 3,
            "wonContest": 3,
            "totalClearance": 3,
            "outfielderBlock": 1,
            "interceptionWon": 5,
            "totalTackle": 4,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 97,
            "rating": 7.7,
            "possessionLostCtrl": 9,
            "ratingVersions": {
                "original": 7.7,
                "alternative": null
            },
            "expectedAssists": 0.0254077
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Miguel Guti\u00e9rrez",
            "slug": "miguel-gutierrez",
            "shortName": "M. Guti\u00e9rrez",
            "position": "D",
            "jerseyNumber": "3",
            "height": 180,
            "userCount": 3440,
            "id": 908716,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 996192000,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 43,
            "accuratePass": 37,
            "totalLongBalls": 4,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 2,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "totalContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 70,
            "rating": 6.8,
            "possessionLostCtrl": 14,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.265842
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Yangel Herrera",
            "slug": "yangel-herrera",
            "shortName": "Y. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 184,
            "userCount": 4001,
            "id": 839585,
            "country": {
                "alpha2": "VE",
                "alpha3": "VEN",
                "name": "Venezuela",
                "slug": "venezuela"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 884131200,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 34,
            "accuratePass": 26,
            "totalLongBalls": 3,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 6,
            "duelWon": 10,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalTackle": 7,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 70,
            "touches": 58,
            "rating": 7.4,
            "possessionLostCtrl": 16,
            "expectedGoals": 0.1128,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.4,
                "alternative": null
            },
            "expectedAssists": 0.0938112
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Oriol Romeu",
            "firstName": "",
            "lastName": "",
            "slug": "oriol-romeu",
            "shortName": "O. Romeu",
            "position": "M",
            "jerseyNumber": "14",
            "height": 182,
            "userCount": 9077,
            "id": 69416,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 685670400,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 14,
        "jerseyNumber": "14",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 54,
            "accuratePass": 49,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 5,
            "duelWon": 1,
            "dispossessed": 2,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 66,
            "touches": 61,
            "rating": 6.7,
            "possessionLostCtrl": 8,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.0130999
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iv\u00e1n Mart\u00edn",
            "slug": "ivan-martin",
            "shortName": "I. Mart\u00edn",
            "position": "M",
            "jerseyNumber": "23",
            "height": 178,
            "userCount": 987,
            "id": 973699,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 918950400,
            "proposedMarketValueRaw": {
                "value": 13700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 70,
            "accuratePass": 62,
            "goalAssist": 0,
            "duelLost": 3,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 81,
            "rating": 6.9,
            "possessionLostCtrl": 13,
            "keyPass": 3,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.428018
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Bryan Gil",
            "slug": "bryan-gil",
            "shortName": "B. Gil",
            "position": "M",
            "jerseyNumber": "20",
            "height": 176,
            "userCount": 3933,
            "id": 910026,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981849600,
            "proposedMarketValueRaw": {
                "value": 14400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 40,
            "accuratePass": 36,
            "totalLongBalls": 2,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 5,
            "accurateCross": 1,
            "duelLost": 11,
            "duelWon": 9,
            "challengeLost": 2,
            "dispossessed": 6,
            "totalContest": 5,
            "wonContest": 3,
            "shotOffTarget": 3,
            "onTargetScoringAttempt": 1,
            "interceptionWon": 1,
            "totalTackle": 4,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 77,
            "rating": 7.6,
            "possessionLostCtrl": 19,
            "expectedGoals": 0.166,
            "keyPass": 2,
            "ratingVersions": {
                "original": 7.6,
                "alternative": null
            },
            "expectedAssists": 0.145342
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Abel Ru\u00edz",
            "slug": "abel-ruiz",
            "shortName": "A. Ru\u00edz",
            "position": "F",
            "jerseyNumber": "9",
            "height": 182,
            "userCount": 2040,
            "id": 826013,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 949017600,
            "proposedMarketValueRaw": {
                "value": 11400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0631\u0648\u064a\u0632"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 15,
            "accuratePass": 14,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 4,
            "duelWon": 1,
            "challengeLost": 1,
            "bigChanceMissed": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "hitWoodwork": 1,
            "outfielderBlock": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 1,
            "totalOffside": 1,
            "minutesPlayed": 81,
            "touches": 25,
            "rating": 6.5,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.2601,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.00713775
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Portu",
            "firstName": "",
            "lastName": "",
            "slug": "portu",
            "shortName": "Portu",
            "position": "F",
            "jerseyNumber": "24",
            "height": 167,
            "userCount": 1016,
            "id": 218616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 706406400,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0628\u0648\u0631\u062a\u0648"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 19,
            "goalAssist": 0,
            "totalCross": 3,
            "duelWon": 2,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "wasFouled": 2,
            "totalOffside": 1,
            "minutesPlayed": 66,
            "touches": 35,
            "rating": 6.9,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0495,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0336707
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Jhon Sol\u00eds",
            "firstName": "Jhon Solis",
            "slug": "jhon-solis",
            "shortName": "J. Sol\u00eds",
            "position": "M",
            "jerseyNumber": "22",
            "height": 186,
            "userCount": 1544,
            "id": 1106573,
            "country": {
                "alpha2": "CO",
                "alpha3": "COL",
                "name": "Colombia",
                "slug": "colombia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1096761600,
            "proposedMarketValueRaw": {
                "value": 4400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "Solis, Jhon Elmer"
                },
                "shortNameTranslation": {
                    "ar": "J. E. Solis"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 18,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 24,
            "touches": 25,
            "rating": 6.6,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.012,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.00540133
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Iker Almena",
            "slug": "almena-iker",
            "shortName": "I. Almena",
            "position": "F",
            "jerseyNumber": "30",
            "height": 176,
            "userCount": 216,
            "id": 1513656,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1083628800,
            "proposedMarketValueRaw": {
                "value": 960000,
                "currency": "EUR"
            }
        },
        "teamId": 56027,
        "shirtNumber": 30,
        "jerseyNumber": "30",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 6,
            "goalAssist": 1,
            "totalCross": 1,
            "duelLost": 1,
            "duelWon": 2,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceCreated": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "wasFouled": 1,
            "minutesPlayed": 24,
            "touches": 17,
            "rating": 7.3,
            "possessionLostCtrl": 3,
            "expectedGoals": 0.0311,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            },
            "expectedAssists": 0.366386
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Gabriel Misehouy",
            "firstName": "",
            "lastName": "",
            "slug": "gabriel-misehouy",
            "shortName": "G. Misehouy",
            "position": "M",
            "jerseyNumber": "27",
            "height": 173,
            "userCount": 724,
            "id": 1142566,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1121644800,
            "proposedMarketValueRaw": {
                "value": 970000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 6,
            "goalAssist": 0,
            "totalCross": 1,
            "onTargetScoringAttempt": 1,
            "blockedScoringAttempt": 1,
            "goals": 1,
            "minutesPlayed": 20,
            "touches": 10,
            "rating": 7.5,
            "possessionLostCtrl": 2,
            "expectedGoals": 0.7605,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.5,
                "alternative": null
            },
            "expectedAssists": 0.00502262
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Ladislav Krej\u010d\u00ed",
            "slug": "ladislav-krejci",
            "shortName": "L. Krej\u010d\u00ed",
            "position": "D",
            "jerseyNumber": "18",
            "height": 191,
            "userCount": 1561,
            "id": 856250,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 924566400,
            "proposedMarketValueRaw": {
                "value": 9300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 18,
        "jerseyNumber": "18",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 11,
            "goalAssist": 0,
            "minutesPlayed": 9,
            "touches": 11,
            "rating": 6.6,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Cristhian Stuani",
            "slug": "cristhian-stuani",
            "shortName": "C. Stuani",
            "position": "F",
            "jerseyNumber": "7",
            "height": 184,
            "userCount": 1860,
            "id": 32048,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 529459200,
            "proposedMarketValueRaw": {
                "value": 1700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 1,
            "accuratePass": 1,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 1,
            "blockedScoringAttempt": 1,
            "minutesPlayed": 9,
            "touches": 3,
            "rating": 6.6,
            "expectedGoals": 0.1871,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juan Carlos",
            "slug": "juan-carlos",
            "shortName": "J. Carlos",
            "position": "G",
            "jerseyNumber": "1",
            "height": 187,
            "userCount": 211,
            "id": 83708,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 569635200,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Alejandro Franc\u00e9s",
            "slug": "alejandro-frances",
            "shortName": "A. Franc\u00e9s",
            "position": "D",
            "jerseyNumber": "16",
            "height": 180,
            "userCount": 596,
            "id": 1002347,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1028160000,
            "proposedMarketValueRaw": {
                "value": 4700000,
                "currency": "EUR"
            }
        },
        "teamId": 24264,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Juanpe",
            "slug": "juanpe",
            "shortName": "Juanpe",
            "position": "D",
            "jerseyNumber": "15",
            "height": 189,
            "userCount": 262,
            "id": 129861,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 672969600,
            "proposedMarketValueRaw": {
                "value": 1000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Toni Villa",
            "slug": "toni-villa",
            "shortName": "Toni",
            "position": "M",
            "jerseyNumber": "19",
            "height": 171,
            "userCount": 192,
            "id": 813523,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 789436800,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u064a\u0627, \u062a\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062a. \u0641\u064a\u064a\u0627"
                }
            }
        },
        "teamId": 2839,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Donny van de Beek",
            "slug": "donny-van-de-beek",
            "shortName": "D. v. d. Beek",
            "position": "M",
            "jerseyNumber": "6",
            "height": 183,
            "userCount": 11397,
            "id": 361790,
            "country": {
                "alpha2": "NL",
                "alpha3": "NLD",
                "name": "Netherlands",
                "slug": "netherlands"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 861321600,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
                }
            }
        },
        "teamId": 24264,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    },
    {
        "player": {
            "name": "Joel Roca",
            "firstName": "",
            "lastName": "",
            "slug": "joel-roca",
            "shortName": "J. Roca",
            "position": "F",
            "jerseyNumber": "27",
            "height": 176,
            "userCount": 135,
            "id": 1391616,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1118102400,
            "proposedMarketValueRaw": {
                "value": 210000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 33,
        "jerseyNumber": "33",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Girona FC"
    }
]
[
    {
        "player": {
            "name": "Alex Padilla",
            "firstName": "\u00c1lex Padilla",
            "lastName": "",
            "slug": "padilla-alex",
            "shortName": "\u00c1. Padilla",
            "position": "G",
            "jerseyNumber": "26",
            "height": 190,
            "userCount": 1155,
            "id": 1155116,
            "country": {
                "alpha2": "MX",
                "alpha3": "MEX",
                "name": "Mexico",
                "slug": "mexico"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1062374400,
            "proposedMarketValueRaw": {
                "value": 2100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 36,
            "accuratePass": 19,
            "totalLongBalls": 22,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 1,
            "goodHighClaim": 1,
            "savedShotsFromInsideTheBox": 1,
            "saves": 1,
            "totalKeeperSweeper": 2,
            "accurateKeeperSweeper": 2,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 6.6,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "goalsPrevented": -0.0132
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Andoni Gorosabel",
            "slug": "andoni-gorosabel",
            "shortName": "A. Gorosabel",
            "position": "D",
            "jerseyNumber": "2",
            "height": 174,
            "userCount": 392,
            "id": 866810,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 839116800,
            "proposedMarketValueRaw": {
                "value": 4900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 16,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "wonContest": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "fouls": 3,
            "minutesPlayed": 81,
            "touches": 36,
            "rating": 6.3,
            "possessionLostCtrl": 5,
            "ratingVersions": {
                "original": 6.3,
                "alternative": null
            },
            "expectedAssists": 0.0509136
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yeray \u00c1lvarez",
            "slug": "yeray-alvarez",
            "shortName": "Y. \u00c1lvarez",
            "position": "D",
            "jerseyNumber": "5",
            "height": 183,
            "userCount": 710,
            "id": 807648,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 790905600,
            "proposedMarketValueRaw": {
                "value": 8199999,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 59,
            "accuratePass": 52,
            "totalLongBalls": 7,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 5,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 1,
            "totalClearance": 6,
            "interceptionWon": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 75,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00519094
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Aitor Paredes",
            "firstName": "",
            "lastName": "",
            "slug": "aitor-paredes",
            "shortName": "A. Paredes",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 687,
            "id": 959872,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956966400,
            "proposedMarketValueRaw": {
                "value": 21000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 4,
        "jerseyNumber": "4",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 56,
            "accuratePass": 49,
            "totalLongBalls": 12,
            "accurateLongBalls": 5,
            "goalAssist": 0,
            "aerialWon": 3,
            "duelLost": 2,
            "duelWon": 4,
            "challengeLost": 1,
            "totalClearance": 8,
            "outfielderBlock": 1,
            "errorLeadToAShot": 1,
            "wasFouled": 2,
            "fouls": 1,
            "minutesPlayed": 81,
            "touches": 69,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Yuri Berchiche",
            "slug": "yuri-berchiche",
            "shortName": "Y. Berchiche",
            "position": "D",
            "jerseyNumber": "17",
            "height": 181,
            "userCount": 920,
            "id": 84531,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 634608000,
            "proposedMarketValueRaw": {
                "value": 1600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 46,
            "accuratePass": 40,
            "totalLongBalls": 4,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "aerialWon": 2,
            "duelLost": 3,
            "duelWon": 4,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 2,
            "interceptionWon": 1,
            "totalTackle": 1,
            "totalOffside": 1,
            "minutesPlayed": 90,
            "touches": 71,
            "rating": 7.1,
            "possessionLostCtrl": 8,
            "expectedGoals": 0.0217,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0124397
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Be\u00f1at Prados",
            "firstName": "",
            "lastName": "",
            "slug": "benat-prados",
            "shortName": "B. Prados",
            "position": "M",
            "jerseyNumber": "24",
            "height": 179,
            "userCount": 509,
            "id": 1012409,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 981590400,
            "proposedMarketValueRaw": {
                "value": 15500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 24,
        "jerseyNumber": "24",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 28,
            "accuratePass": 20,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 4,
            "duelLost": 6,
            "duelWon": 6,
            "challengeLost": 2,
            "totalContest": 2,
            "wonContest": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 35,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.0149092
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Vesga",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-vesga",
            "shortName": "M. Vesga",
            "position": "M",
            "jerseyNumber": "6",
            "height": 191,
            "userCount": 452,
            "id": 359742,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 734227200,
            "proposedMarketValueRaw": {
                "value": 3800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 38,
            "accuratePass": 27,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "duelLost": 4,
            "duelWon": 2,
            "challengeLost": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "interceptionWon": 1,
            "totalTackle": 2,
            "fouls": 1,
            "minutesPlayed": 57,
            "touches": 46,
            "rating": 6.4,
            "possessionLostCtrl": 14,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0177223
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "I\u00f1aki Williams",
            "slug": "inaki-williams",
            "shortName": "I. Williams",
            "position": "M",
            "jerseyNumber": "9",
            "height": 186,
            "userCount": 23665,
            "id": 783374,
            "country": {
                "alpha2": "GH",
                "alpha3": "GHA",
                "name": "Ghana",
                "slug": "ghana"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 771638400,
            "proposedMarketValueRaw": {
                "value": 23000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 9,
        "jerseyNumber": "9",
        "position": "M",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 22,
            "accuratePass": 15,
            "goalAssist": 0,
            "totalCross": 2,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 3,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 2,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 41,
            "rating": 6.6,
            "possessionLostCtrl": 13,
            "expectedGoals": 0.1155,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            },
            "expectedAssists": 0.0256862
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oihan Sancet",
            "firstName": "",
            "lastName": "",
            "slug": "oihan-sancet",
            "shortName": "O. Sancet",
            "position": "M",
            "jerseyNumber": "8",
            "height": 188,
            "userCount": 2466,
            "id": 966801,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 956620800,
            "proposedMarketValueRaw": {
                "value": 39000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 23,
            "accuratePass": 18,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 2,
            "dispossessed": 2,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 29,
            "rating": 7.1,
            "possessionLostCtrl": 7,
            "expectedGoals": 0.0475,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0100871
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00c1lex Berenguer",
            "slug": "alex-berenguer",
            "shortName": "\u00c1. Berenguer",
            "position": "M",
            "jerseyNumber": "7",
            "height": 175,
            "userCount": 1233,
            "id": 592012,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 804816000,
            "proposedMarketValueRaw": {
                "value": 12400000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 17,
            "accuratePass": 11,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 6,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 7,
            "duelWon": 7,
            "dispossessed": 2,
            "totalContest": 5,
            "wonContest": 2,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 72,
            "touches": 36,
            "rating": 6.4,
            "possessionLostCtrl": 17,
            "ratingVersions": {
                "original": 6.4,
                "alternative": null
            },
            "expectedAssists": 0.0141736
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Gorka Guruzeta",
            "slug": "gorka-guruzeta",
            "shortName": "G. Guruzeta",
            "position": "F",
            "jerseyNumber": "12",
            "height": 188,
            "userCount": 2046,
            "id": 605672,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 842486400,
            "proposedMarketValueRaw": {
                "value": 16600000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 12,
        "jerseyNumber": "12",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 21,
            "accuratePass": 16,
            "goalAssist": 1,
            "aerialLost": 6,
            "duelLost": 11,
            "duelWon": 1,
            "dispossessed": 1,
            "totalContest": 1,
            "blockedScoringAttempt": 1,
            "totalClearance": 1,
            "outfielderBlock": 1,
            "wasFouled": 1,
            "fouls": 3,
            "minutesPlayed": 90,
            "touches": 33,
            "rating": 6.8,
            "possessionLostCtrl": 9,
            "expectedGoals": 0.0947,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0203179
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Ander Herrera",
            "slug": "ander-herrera",
            "shortName": "A. Herrera",
            "position": "M",
            "jerseyNumber": "21",
            "height": 182,
            "userCount": 2447,
            "id": 82474,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 619056000,
            "proposedMarketValueRaw": {
                "value": 1800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 32,
            "accuratePass": 27,
            "totalLongBalls": 1,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 5,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "totalTackle": 1,
            "wasFouled": 2,
            "fouls": 2,
            "minutesPlayed": 33,
            "touches": 40,
            "rating": 6.7,
            "possessionLostCtrl": 7,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.210657
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai G\u00f3mez",
            "slug": "unai-gomez",
            "shortName": "U. G\u00f3mez",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 516,
            "id": 1391375,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053820800,
            "proposedMarketValueRaw": {
                "value": 6200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 7,
            "goalAssist": 0,
            "totalCross": 4,
            "accurateCross": 1,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 4,
            "duelWon": 3,
            "dispossessed": 1,
            "totalContest": 2,
            "wonContest": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 33,
            "touches": 19,
            "rating": 6.5,
            "possessionLostCtrl": 7,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            },
            "expectedAssists": 0.038168
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Nico Williams",
            "firstName": "",
            "lastName": "",
            "slug": "nico-williams",
            "shortName": "N. Williams",
            "position": "M",
            "jerseyNumber": "10",
            "height": 180,
            "userCount": 67383,
            "id": 1085400,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1026432000,
            "proposedMarketValueRaw": {
                "value": 76000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0648. \u0646\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 10,
        "jerseyNumber": "10",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 6,
            "accuratePass": 4,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "totalContest": 1,
            "wonContest": 1,
            "onTargetScoringAttempt": 2,
            "minutesPlayed": 18,
            "touches": 12,
            "rating": 7.1,
            "possessionLostCtrl": 4,
            "expectedGoals": 0.0514,
            "ratingVersions": {
                "original": 7.1,
                "alternative": null
            },
            "expectedAssists": 0.0786179
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Daniel Vivian",
            "firstName": "",
            "lastName": "",
            "slug": "daniel-vivian",
            "shortName": "D. Vivian",
            "position": "D",
            "jerseyNumber": "3",
            "height": 183,
            "userCount": 1936,
            "id": 910978,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 931132800,
            "proposedMarketValueRaw": {
                "value": 27000000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 3,
        "jerseyNumber": "3",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 18,
            "accuratePass": 18,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 2,
            "duelLost": 2,
            "totalClearance": 1,
            "totalOffside": 1,
            "minutesPlayed": 9,
            "touches": 20,
            "rating": 6.6,
            "possessionLostCtrl": 1,
            "ratingVersions": {
                "original": 6.6,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "\u00cd\u00f1igo Lekue",
            "slug": "inigo-lekue",
            "shortName": "\u00cd. Lekue",
            "position": "D",
            "jerseyNumber": "15",
            "height": 180,
            "userCount": 254,
            "id": 801837,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 736473600,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0627. \u0644\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2825,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": true,
        "statistics": {
            "totalPass": 14,
            "accuratePass": 13,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "duelWon": 1,
            "wasFouled": 1,
            "minutesPlayed": 9,
            "touches": 18,
            "rating": 6.8,
            "possessionLostCtrl": 2,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.00828517
        },
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Oier Gastesi",
            "slug": "oier-gastesi",
            "shortName": "O. Gastesi",
            "position": "G",
            "jerseyNumber": "1",
            "height": 190,
            "userCount": 27,
            "id": 1391376,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1067472000,
            "proposedMarketValueRaw": {
                "value": 160000,
                "currency": "EUR"
            }
        },
        "teamId": 24324,
        "shirtNumber": 34,
        "jerseyNumber": "34",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Unai Egu\u00edluz",
            "firstName": "",
            "lastName": "",
            "slug": "unai-eguiluz",
            "shortName": "U. Egu\u00edluz",
            "position": "D",
            "jerseyNumber": "4",
            "height": 186,
            "userCount": 73,
            "id": 1391374,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1016496000,
            "proposedMarketValueRaw": {
                "value": 205000,
                "currency": "EUR"
            }
        },
        "teamId": 35092,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Adama Boiro",
            "firstName": "Adama Boiro",
            "slug": "adama-boiro",
            "shortName": "A. Boiro",
            "position": "D",
            "jerseyNumber": "32",
            "height": 182,
            "userCount": 325,
            "id": 1398511,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1024704000,
            "proposedMarketValueRaw": {
                "value": 1400000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 32,
        "jerseyNumber": "32",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Malcom Ares",
            "firstName": "",
            "lastName": "",
            "slug": "malcom-ares",
            "shortName": "M. Ares",
            "position": "M",
            "jerseyNumber": "20",
            "height": 183,
            "userCount": 334,
            "id": 1391487,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1002844800,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u062f\u0648 \u060c \u0645\u0627\u0644\u0643\u0648\u0645"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u060c \u0645\u0627\u0644\u0643\u0648\u0645"
                }
            }
        },
        "teamId": 2815,
        "shirtNumber": 23,
        "jerseyNumber": "23",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Mikel Jauregizar",
            "firstName": "",
            "lastName": "",
            "slug": "mikel-jauregizar",
            "shortName": "M. Jauregizar",
            "position": "M",
            "jerseyNumber": "23",
            "height": 177,
            "userCount": 395,
            "id": 1495844,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1068681600,
            "proposedMarketValueRaw": {
                "value": 3100000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 31,
        "jerseyNumber": "31",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "Javier Mart\u00f3n Ans\u00f3",
            "firstName": "",
            "lastName": "",
            "slug": "javier-marton-anso",
            "shortName": "J. M. Ans\u00f3",
            "position": "F",
            "jerseyNumber": "19",
            "height": 180,
            "userCount": 175,
            "id": 1082215,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 925948800,
            "proposedMarketValueRaw": {
                "value": 515000,
                "currency": "EUR"
            }
        },
        "teamId": 2825,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Athletic Club"
    },
    {
        "player": {
            "name": "David Soria",
            "slug": "david-soria",
            "shortName": "D. Soria",
            "position": "G",
            "jerseyNumber": "13",
            "height": 192,
            "userCount": 605,
            "id": 604258,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 733881600,
            "proposedMarketValueRaw": {
                "value": 4800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 13,
        "jerseyNumber": "13",
        "position": "G",
        "substitute": false,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 6,
            "totalLongBalls": 13,
            "accurateLongBalls": 3,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 1,
            "totalClearance": 2,
            "goodHighClaim": 2,
            "saves": 3,
            "punches": 2,
            "minutesPlayed": 90,
            "touches": 25,
            "rating": 6.9,
            "possessionLostCtrl": 10,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.0100941,
            "goalsPrevented": -0.0775
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Juan Iglesias",
            "firstName": "",
            "lastName": "",
            "slug": "juan-iglesias",
            "shortName": "J. Iglesias",
            "position": "D",
            "jerseyNumber": "21",
            "height": 185,
            "userCount": 297,
            "id": 949707,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 899424000,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
                },
                "shortNameTranslation": {
                    "ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 21,
        "jerseyNumber": "21",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 13,
            "accuratePass": 7,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 1,
            "aerialLost": 4,
            "aerialWon": 1,
            "duelLost": 8,
            "duelWon": 6,
            "challengeLost": 4,
            "totalClearance": 4,
            "interceptionWon": 6,
            "totalTackle": 5,
            "minutesPlayed": 90,
            "touches": 47,
            "rating": 7,
            "possessionLostCtrl": 15,
            "ratingVersions": {
                "original": 7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Djen\u00e9",
            "slug": "djene",
            "shortName": "Djen\u00e9",
            "position": "D",
            "jerseyNumber": "2",
            "height": 178,
            "userCount": 1382,
            "id": 307702,
            "country": {
                "alpha2": "TG",
                "alpha3": "TGO",
                "name": "Togo",
                "slug": "togo"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 694137600,
            "proposedMarketValueRaw": {
                "value": 2700000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 2,
        "jerseyNumber": "2",
        "position": "D",
        "substitute": false,
        "captain": true,
        "statistics": {
            "totalPass": 16,
            "accuratePass": 13,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 1,
            "duelWon": 2,
            "totalClearance": 8,
            "interceptionWon": 2,
            "wasFouled": 1,
            "minutesPlayed": 90,
            "touches": 28,
            "rating": 6.8,
            "possessionLostCtrl": 4,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Omar Alderete",
            "slug": "omar-alderete",
            "shortName": "O. Alderete",
            "position": "D",
            "jerseyNumber": "15",
            "height": 187,
            "userCount": 1368,
            "id": 805137,
            "country": {
                "alpha2": "PY",
                "alpha3": "PRY",
                "name": "Paraguay",
                "slug": "paraguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 851558400,
            "proposedMarketValueRaw": {
                "value": 5300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                },
                "shortNameTranslation": {
                    "ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 15,
        "jerseyNumber": "15",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 27,
            "accuratePass": 16,
            "totalLongBalls": 14,
            "accurateLongBalls": 6,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 3,
            "duelLost": 1,
            "duelWon": 4,
            "bigChanceCreated": 1,
            "blockedScoringAttempt": 2,
            "totalClearance": 4,
            "outfielderBlock": 1,
            "totalTackle": 1,
            "minutesPlayed": 90,
            "touches": 36,
            "rating": 7.2,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0403,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            },
            "expectedAssists": 0.0784446
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Rico",
            "slug": "diego-rico",
            "shortName": "D. Rico",
            "position": "D",
            "jerseyNumber": "16",
            "height": 181,
            "userCount": 648,
            "id": 350560,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 730425600,
            "proposedMarketValueRaw": {
                "value": 1500000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u0631\u064a\u0643\u0648"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 16,
        "jerseyNumber": "16",
        "position": "D",
        "substitute": false,
        "statistics": {
            "totalPass": 20,
            "accuratePass": 13,
            "totalLongBalls": 6,
            "accurateLongBalls": 4,
            "goalAssist": 0,
            "aerialLost": 1,
            "aerialWon": 1,
            "duelLost": 2,
            "duelWon": 7,
            "totalTackle": 5,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 90,
            "touches": 43,
            "rating": 6.9,
            "possessionLostCtrl": 9,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.9,
                "alternative": null
            },
            "expectedAssists": 0.00668155
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Nabil Aberdin",
            "firstName": "",
            "lastName": "",
            "slug": "nabil-aberdin",
            "shortName": "N. Aberdin",
            "position": "D",
            "jerseyNumber": "27",
            "height": 182,
            "userCount": 363,
            "id": 1136806,
            "country": {
                "alpha2": "FR",
                "alpha3": "FRA",
                "name": "France",
                "slug": "france"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1030060800,
            "proposedMarketValueRaw": {
                "value": 560000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 27,
        "jerseyNumber": "27",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 19,
            "accuratePass": 11,
            "totalLongBalls": 3,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "aerialWon": 5,
            "duelLost": 2,
            "duelWon": 11,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalClearance": 2,
            "totalTackle": 4,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 32,
            "rating": 7.2,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0154,
            "ratingVersions": {
                "original": 7.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles P\u00e9rez",
            "firstName": "",
            "lastName": "",
            "slug": "carles-perez",
            "shortName": "C. P\u00e9rez",
            "position": "M",
            "jerseyNumber": "17",
            "height": 172,
            "userCount": 1177,
            "id": 794950,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 887587200,
            "proposedMarketValueRaw": {
                "value": 2900000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 17,
        "jerseyNumber": "17",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 8,
            "accuratePass": 5,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "totalCross": 1,
            "accurateCross": 1,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 4,
            "dispossessed": 1,
            "totalContest": 4,
            "wonContest": 3,
            "shotOffTarget": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 25,
            "rating": 6.8,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0447,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.059864
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Luis Milla",
            "slug": "luis-milla",
            "shortName": "L. Milla",
            "position": "M",
            "jerseyNumber": "5",
            "height": 175,
            "userCount": 984,
            "id": 811629,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 781488000,
            "proposedMarketValueRaw": {
                "value": 3200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                },
                "shortNameTranslation": {
                    "ar": "\u0645\u064a\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 5,
        "jerseyNumber": "5",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 26,
            "accuratePass": 15,
            "totalLongBalls": 4,
            "accurateLongBalls": 2,
            "goalAssist": 1,
            "totalCross": 8,
            "accurateCross": 3,
            "aerialLost": 4,
            "aerialWon": 2,
            "duelLost": 9,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalClearance": 1,
            "interceptionWon": 1,
            "wasFouled": 1,
            "fouls": 2,
            "minutesPlayed": 90,
            "touches": 46,
            "rating": 6.7,
            "possessionLostCtrl": 19,
            "keyPass": 2,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            },
            "expectedAssists": 0.115002
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Mauro Arambarri",
            "slug": "mauro-arambarri",
            "shortName": "M. Arambarri",
            "position": "M",
            "jerseyNumber": "8",
            "height": 175,
            "userCount": 820,
            "id": 385888,
            "country": {
                "alpha2": "UY",
                "alpha3": "URY",
                "name": "Uruguay",
                "slug": "uruguay"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 812419200,
            "proposedMarketValueRaw": {
                "value": 5200000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
                },
                "shortNameTranslation": {
                    "ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 8,
        "jerseyNumber": "8",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 9,
            "accuratePass": 4,
            "totalLongBalls": 3,
            "goalAssist": 0,
            "aerialLost": 1,
            "duelLost": 2,
            "totalContest": 1,
            "minutesPlayed": 40,
            "touches": 11,
            "rating": 6.2,
            "possessionLostCtrl": 6,
            "ratingVersions": {
                "original": 6.2,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "\u00c1lex Sola",
            "firstName": "",
            "lastName": "",
            "slug": "alex-sola",
            "shortName": "\u00c1. Sola",
            "position": "M",
            "jerseyNumber": "7",
            "height": 178,
            "userCount": 259,
            "id": 966836,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 928886400,
            "proposedMarketValueRaw": {
                "value": 4300000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0623. \u0633\u0648\u0644\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 7,
        "jerseyNumber": "7",
        "position": "M",
        "substitute": false,
        "statistics": {
            "totalPass": 10,
            "accuratePass": 5,
            "totalLongBalls": 2,
            "accurateLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "duelLost": 6,
            "duelWon": 3,
            "challengeLost": 2,
            "dispossessed": 2,
            "totalContest": 1,
            "wonContest": 1,
            "shotOffTarget": 1,
            "totalTackle": 1,
            "wasFouled": 1,
            "minutesPlayed": 79,
            "touches": 20,
            "rating": 6.5,
            "possessionLostCtrl": 10,
            "expectedGoals": 0.0101,
            "keyPass": 1,
            "ratingVersions": {
                "original": 6.5,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Christantus Uche",
            "firstName": "Christantus Uche",
            "slug": "christantus-uche",
            "shortName": "C. Uche",
            "position": "M",
            "jerseyNumber": "6",
            "height": 190,
            "userCount": 822,
            "id": 1884145,
            "country": {
                "alpha2": "NG",
                "alpha3": "NGA",
                "name": "Nigeria",
                "slug": "nigeria"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1053302400,
            "proposedMarketValueRaw": {
                "value": 5500000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 6,
        "jerseyNumber": "6",
        "position": "F",
        "substitute": false,
        "statistics": {
            "totalPass": 11,
            "accuratePass": 7,
            "totalLongBalls": 1,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 3,
            "duelLost": 6,
            "duelWon": 9,
            "dispossessed": 1,
            "totalContest": 1,
            "onTargetScoringAttempt": 1,
            "goals": 1,
            "totalTackle": 2,
            "wasFouled": 4,
            "fouls": 2,
            "totalOffside": 4,
            "minutesPlayed": 90,
            "touches": 30,
            "rating": 7.3,
            "possessionLostCtrl": 12,
            "expectedGoals": 0.0469,
            "keyPass": 1,
            "ratingVersions": {
                "original": 7.3,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Carles Ale\u00f1\u00e1",
            "firstName": "",
            "lastName": "",
            "slug": "carles-alena",
            "shortName": "C. Ale\u00f1\u00e1",
            "position": "M",
            "jerseyNumber": "11",
            "height": 180,
            "userCount": 1570,
            "id": 794937,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 883958400,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 11,
        "jerseyNumber": "11",
        "position": "M",
        "substitute": true,
        "statistics": {
            "totalPass": 12,
            "accuratePass": 9,
            "totalLongBalls": 5,
            "accurateLongBalls": 2,
            "goalAssist": 0,
            "totalCross": 3,
            "aerialLost": 1,
            "duelLost": 4,
            "duelWon": 5,
            "challengeLost": 1,
            "totalContest": 1,
            "wonContest": 1,
            "bigChanceMissed": 1,
            "onTargetScoringAttempt": 1,
            "totalClearance": 1,
            "totalTackle": 2,
            "wasFouled": 2,
            "fouls": 2,
            "totalOffside": 2,
            "minutesPlayed": 50,
            "touches": 26,
            "rating": 6.8,
            "possessionLostCtrl": 6,
            "expectedGoals": 0.5129,
            "ratingVersions": {
                "original": 6.8,
                "alternative": null
            },
            "expectedAssists": 0.0106217
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Peter Gonz\u00e1lez",
            "firstName": "",
            "lastName": "",
            "slug": "peter-gonzalez",
            "shortName": "P. Gonz\u00e1lez",
            "position": "F",
            "jerseyNumber": "19",
            "height": 178,
            "userCount": 1208,
            "id": 1048927,
            "country": {
                "alpha2": "DO",
                "alpha3": "DOM",
                "name": "Dominican Republic",
                "slug": "dominican-republic"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1027555200,
            "proposedMarketValueRaw": {
                "value": 2800000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 19,
        "jerseyNumber": "19",
        "position": "F",
        "substitute": true,
        "statistics": {
            "totalPass": 7,
            "accuratePass": 5,
            "goalAssist": 0,
            "aerialLost": 2,
            "aerialWon": 1,
            "duelLost": 3,
            "duelWon": 2,
            "dispossessed": 1,
            "shotOffTarget": 1,
            "hitWoodwork": 1,
            "totalClearance": 1,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 45,
            "touches": 14,
            "rating": 6.7,
            "possessionLostCtrl": 5,
            "expectedGoals": 0.1688,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Yellu Santiago",
            "firstName": "Jes\u00fas Santiago",
            "slug": "yellu-santiago",
            "shortName": "J. Santiago",
            "position": "M",
            "jerseyNumber": "20",
            "height": 192,
            "userCount": 138,
            "id": 1211005,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1085443200,
            "proposedMarketValueRaw": {
                "value": 905000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 20,
        "jerseyNumber": "20",
        "position": "M",
        "substitute": true,
        "statistics": {
            "goalAssist": 0,
            "duelLost": 1,
            "duelWon": 3,
            "totalTackle": 2,
            "wasFouled": 1,
            "fouls": 1,
            "minutesPlayed": 11,
            "touches": 3,
            "rating": 6.7,
            "ratingVersions": {
                "original": 6.7,
                "alternative": null
            }
        },
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Diego Ferrer",
            "slug": "diego-ferrer",
            "shortName": "D. Ferrer",
            "position": "G",
            "userCount": 16,
            "id": 1893571,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1176768000
        },
        "teamId": 375393,
        "shirtNumber": 40,
        "jerseyNumber": "40",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Ji\u0159\u00ed Let\u00e1\u010dek",
            "firstName": "",
            "lastName": "",
            "slug": "jiri-letacek",
            "shortName": "J. Let\u00e1\u010dek",
            "position": "G",
            "jerseyNumber": "30",
            "height": 196,
            "userCount": 110,
            "id": 826047,
            "country": {
                "alpha2": "CZ",
                "alpha3": "CZE",
                "name": "Czechia",
                "slug": "czechia"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 915840000,
            "proposedMarketValueRaw": {
                "value": 1900000,
                "currency": "EUR"
            }
        },
        "teamId": 2859,
        "shirtNumber": 1,
        "jerseyNumber": "1",
        "position": "G",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Domingos Duarte",
            "firstName": "",
            "lastName": "",
            "slug": "domingos-duarte",
            "shortName": "D. Duarte",
            "position": "D",
            "jerseyNumber": "22",
            "height": 191,
            "userCount": 509,
            "id": 576276,
            "country": {
                "alpha2": "PT",
                "alpha3": "PRT",
                "name": "Portugal",
                "slug": "portugal"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 794793600,
            "proposedMarketValueRaw": {
                "value": 1100000,
                "currency": "EUR"
            },
            "fieldTranslations": {
                "nameTranslation": {
                    "ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
                },
                "shortNameTranslation": {
                    "ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
                }
            }
        },
        "teamId": 2859,
        "shirtNumber": 22,
        "jerseyNumber": "22",
        "position": "D",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    },
    {
        "player": {
            "name": "Alberto Risco",
            "firstName": "Alberto Risco",
            "slug": "alberto-risco",
            "shortName": "A. Risco",
            "position": "M",
            "jerseyNumber": "26",
            "userCount": 36,
            "id": 1841875,
            "country": {
                "alpha2": "ES",
                "alpha3": "ESP",
                "name": "Spain",
                "slug": "spain"
            },
            "marketValueCurrency": "EUR",
            "dateOfBirthTimestamp": 1125360000,
            "proposedMarketValueRaw": {
                "value": 190000,
                "currency": "EUR"
            }
        },
        "teamId": 43753,
        "shirtNumber": 26,
        "jerseyNumber": "26",
        "position": "M",
        "substitute": true,
        "statistics": {},
        "result": "D",
        "team": "Getafe"
    }
]

Refinado de la colección jugadores.¶

Tenemos los datos de cada jugador en todos los partidos en esta temporada 24/25 de La Liga, el siguiente paso será refinarlo. Para refinarlo querremos de los siguientes datos de los jugadores:

  1. name: str con el slug del jugador.
  2. postion: str que indica la posición del jugador.
  3. rating: int que indica la puntuación total del jugador en ese encuentro.
  4. statistics: objeto que incluye todas las stadisticas del jugador.
  5. match_result: str que indica el resultado de su equipo.
  6. substitute: bool que indica si ha sido cambiado en el partido.
  7. team: nombre del equipo que juega.

Las condiciones para que todo lo anterior se agrupe adecuadamente son las siguientes:

  • El jugador debe haber jugado mas de x minutos.
  • rating está incluido en un objeto dentro de un objeto de statistics, por lo que no se mostrará dicho objeto en statistics. Esta condición es bastante especial, porque voy a no utilizar todos los valores que estan dentro de un objeto, en breves palabras lo que quiero hacer es un prject y hacer que el objeto "ratingVersion" no se guarde:
"$project":{
        "ratingVersion": 0
    }

En este apartado realizo proyección

In [264]:
min_minutos = 75

resultado = jugadores_db.aggregate([
    {
        "$match": {
            "statistics.minutesPlayed":{"$gte": min_minutos}
            }
    },
    {
        "$project": {
            "name": "$player.slug",
            "position": 1,
            "rating": "$statistics.ratingVersions.original",
            "statistics": 1,
            "match_result":"$result",
            "substitute": 1, 
            "team":1

        }
    },
    {
        "$unset": ["statistics.ratingVersions", "statistics.rating"]
    },
    {
        "$set": {
            "statistics.passPerc":{"$divide":["$statistics.accuratePass", "$statistics.totalPass"]},
            "statistics.longballsPerc": {"$divide": ["$statistics.accurateLongBalls", "$statistics.totalLongBalls"]}
        }
    }
])
In [265]:
resultado = list(resultado)
for doc in resultado:
    print(doc)
{'_id': ObjectId('6764876983201ea30d32ee15'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 19, 'totalLongBalls': 17, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 1, 'penaltyConceded': 1, 'fouls': 1, 'savedShotsFromInsideTheBox': 3, 'penaltySave': 1, 'saves': 4, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 12, 'goalsPrevented': 0.4753, 'passPerc': 0.6129032258064516, 'longballsPerc': 0.29411764705882354}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee16'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 23, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 79, 'touches': 48, 'possessionLostCtrl': 8, 'expectedAssists': 0.00659078, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'andoni-gorosabel', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee17'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 39, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 11, 'expectedAssists': 0.0138525, 'passPerc': 0.7959183673469388, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee18'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 10, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.2857142857142857}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee19'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 20, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 84, 'touches': 35, 'possessionLostCtrl': 5, 'passPerc': 0.9090909090909091, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'adama-boiro', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee1a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 3, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 4, 'expectedGoals': 0.0086, 'keyPass': 2, 'expectedAssists': 0.0539614, 'passPerc': 0.9, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'mikel-jauregizar', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee1c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 15, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 22, 'expectedGoals': 0.0214, 'keyPass': 1, 'expectedAssists': 0.125076, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee1d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 79, 'touches': 35, 'possessionLostCtrl': 8, 'expectedGoals': 0.0971, 'expectedAssists': 0.0172154, 'passPerc': 0.8947368421052632, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'oihan-sancet', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee1e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 12, 'expectedGoals': 0.1228, 'keyPass': 2, 'expectedAssists': 0.0781492, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee2c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 43, 'totalLongBalls': 16, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 14, 'goalsPrevented': -0.3862, 'passPerc': 0.7543859649122807, 'longballsPerc': 0.1875}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee2d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 88, 'touches': 63, 'possessionLostCtrl': 8, 'expectedAssists': 0.00933505, 'passPerc': 0.8409090909090909, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee2e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 71, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 2, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 5, 'expectedAssists': 0.0100529, 'passPerc': 0.9594594594594594, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'raul-asencio', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee2f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 82, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 9, 'totalTackle': 1, 'wasFouled': 1, 'penaltyWon': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 107, 'possessionLostCtrl': 8, 'expectedGoals': 0.1266, 'expectedAssists': 0.00702789, 'passPerc': 0.9318181818181818, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee31'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 40, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 1, 'duelWon': 3, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 15, 'expectedGoals': 0.007, 'expectedAssists': 0.0251662, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee34'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 35, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 12, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 6, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 16, 'expectedGoals': 0.5717, 'expectedAssists': 0.0100472, 'passPerc': 0.7954545454545454, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 7.9, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee35'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 34, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 3, 'minutesPlayed': 88, 'touches': 57, 'possessionLostCtrl': 12, 'expectedGoals': 0.1467, 'keyPass': 4, 'expectedAssists': 0.280208, 'passPerc': 0.8947368421052632, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'rodrygo', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee36'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 22, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 4, 'totalContest': 5, 'wonContest': 2, 'bigChanceMissed': 2, 'onTargetScoringAttempt': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 14, 'expectedGoals': 0.9606, 'keyPass': 1, 'penaltyMiss': 1, 'expectedAssists': 0.0281, 'passPerc': 0.88, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee41'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 16, 'totalLongBalls': 25, 'accurateLongBalls': 12, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 13, 'goalsPrevented': 0.2288, 'passPerc': 0.5517241379310345, 'longballsPerc': 0.48}, 'team': 'Mallorca', 'name': 'leo-roman', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee42'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 19, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'bigChanceCreated': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 78, 'touches': 56, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.462918, 'passPerc': 0.7037037037037037, 'longballsPerc': 0.42857142857142855}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee43'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 8, 'passPerc': 0.7407407407407407, 'longballsPerc': 0.25}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee44'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 31, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 8, 'passPerc': 0.8378378378378378, 'longballsPerc': 0.8}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee45'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 1, 'totalClearance': 4, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'penaltyConceded': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.117861, 'passPerc': 0.7241379310344828, 'longballsPerc': 0.25}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 5.1, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee47'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 6, 'expectedAssists': 0.0111735, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee48'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 10, 'duelWon': 2, 'challengeLost': 3, 'dispossessed': 2, 'totalContest': 2, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 15, 'expectedGoals': 0.1417, 'keyPass': 1, 'expectedAssists': 0.0168337, 'passPerc': 0.7575757575757576, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee4a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 4, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 5, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 3, 'totalOffside': 5, 'minutesPlayed': 79, 'touches': 20, 'possessionLostCtrl': 9, 'expectedGoals': 0.7085, 'expectedAssists': 0.00760022, 'passPerc': 0.36363636363636365, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee4b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'shotOffTarget': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 3, 'minutesPlayed': 78, 'touches': 23, 'possessionLostCtrl': 8, 'expectedGoals': 0.0344, 'expectedAssists': 0.0116013, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'antonio-sanchez', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee58'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 1, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 3, 'goalsPrevented': -0.0066000000000001, 'passPerc': 0.9117647058823529, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee59'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 12, 'expectedAssists': 0.00745541, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.2}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee5a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 72, 'totalLongBalls': 13, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 13, 'expectedAssists': 0.00603354, 'passPerc': 0.8470588235294118, 'longballsPerc': 0.46153846153846156}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee5b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 82, 'accuratePass': 69, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 2, 'duelWon': 8, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 98, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.00700343, 'passPerc': 0.8414634146341463, 'longballsPerc': 0.4166666666666667}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee5c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 31, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 2, 'bigChanceCreated': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.109712, 'passPerc': 0.8378378378378378, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee5d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 82, 'touches': 63, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.12586, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.6}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee5e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 43, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 4, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 82, 'touches': 67, 'possessionLostCtrl': 12, 'expectedAssists': 0.0165041, 'passPerc': 0.7818181818181819, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee5f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 20, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 7, 'wonContest': 5, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 2, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 20, 'expectedGoals': 1.0148, 'keyPass': 2, 'expectedAssists': 0.284207, 'passPerc': 0.6666666666666666, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee61'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 25, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 4, 'goals': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 87, 'touches': 40, 'possessionLostCtrl': 9, 'expectedGoals': 2.1516, 'keyPass': 4, 'expectedAssists': 0.535739, 'passPerc': 0.9259259259259259, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8.9, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee6f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 23, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 1, 'goalsPrevented': -0.533, 'passPerc': 0.9583333333333334, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee70'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 73, 'accuratePass': 63, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'totalClearance': 1, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 106, 'possessionLostCtrl': 18, 'expectedGoals': 0.2632, 'keyPass': 5, 'expectedAssists': 0.450788, 'passPerc': 0.863013698630137, 'longballsPerc': 0.6666666666666666}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7.8, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee72'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 90, 'accuratePass': 87, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 3, 'duelWon': 1, 'totalClearance': 1, 'interceptionWon': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 6, 'expectedAssists': 0.0431541, 'passPerc': 0.9666666666666667, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee73'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 61, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'outfielderBlock': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0864537, 'passPerc': 0.9384615384615385, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee74'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 127, 'accuratePass': 113, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 80, 'touches': 138, 'possessionLostCtrl': 16, 'expectedAssists': 0.120864, 'passPerc': 0.889763779527559, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee75'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 125, 'accuratePass': 116, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 142, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.638005, 'passPerc': 0.928, 'longballsPerc': 0.8}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 8.5, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee76'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 35, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 2, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 5, 'shotOffTarget': 3, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 62, 'possessionLostCtrl': 14, 'expectedGoals': 0.1173, 'expectedAssists': 0.131567, 'passPerc': 0.813953488372093, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee78'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 43, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 2, 'duelLost': 2, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 4, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'hitWoodwork': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 29, 'expectedGoals': 0.3414, 'keyPass': 5, 'expectedAssists': 0.931037, 'passPerc': 0.7678571428571429, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8.7, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32ee86'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 14, 'totalLongBalls': 38, 'accurateLongBalls': 14, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'punches': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 24, 'goalsPrevented': 2.2481, 'passPerc': 0.3684210526315789, 'longballsPerc': 0.3684210526315789}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee87'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 6, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 14, 'expectedGoals': 0.0082, 'expectedAssists': 0.0154958, 'passPerc': 0.4, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'altimira-adria', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee88'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 8, 'accuratePass': 5, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 6, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 3, 'expectedGoals': 0.075, 'passPerc': 0.625, 'longballsPerc': 0.25}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee89'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 8, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 14, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 3, 'passPerc': 0.8, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'jorge-saenz', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee8b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 7, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 12, 'duelWon': 1, 'challengeLost': 5, 'totalContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 17, 'keyPass': 1, 'expectedAssists': 0.00812511, 'passPerc': 0.3684210526315789, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee8d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 8, 'expectedGoals': 0.0359, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee8e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 13, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 82, 'touches': 27, 'possessionLostCtrl': 7, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee8f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 14, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 7, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 2, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 18, 'keyPass': 2, 'expectedAssists': 0.1061, 'passPerc': 0.6363636363636364, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'oscar-rodriguez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32ee9d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 2, 'goalsPrevented': 0.8865, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ee9e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 39, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 13, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 5, 'totalClearance': 2, 'interceptionWon': 4, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 95, 'possessionLostCtrl': 21, 'expectedAssists': 0.0205065, 'passPerc': 0.8666666666666667, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ee9f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 47, 'totalLongBalls': 16, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 16, 'expectedAssists': 0.0240331, 'passPerc': 0.7580645161290323, 'longballsPerc': 0.375}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eea0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 8, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 8, 'expectedAssists': 0.0055303, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eea1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 4, 'minutesPlayed': 85, 'touches': 38, 'possessionLostCtrl': 10, 'expectedAssists': 0.00698202, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eea2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 32, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 6, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 2, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 20, 'expectedGoals': 0.0305, 'keyPass': 2, 'expectedAssists': 0.072161, 'passPerc': 0.6808510638297872, 'longballsPerc': 0.2}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eea5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 41, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 6, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 15, 'expectedGoals': 0.0941, 'keyPass': 2, 'expectedAssists': 0.0365568, 'passPerc': 0.7884615384615384, 'longballsPerc': 0.42857142857142855}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eea6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 10, 'expectedGoals': 0.3116, 'keyPass': 1, 'expectedAssists': 0.342535, 'passPerc': 0.9411764705882353, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eea7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 10, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'duelLost': 8, 'dispossessed': 2, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 85, 'touches': 24, 'possessionLostCtrl': 10, 'expectedGoals': 0.3736, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'mikel-oyarzabal', 'rating': 6.1, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeb4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 20, 'totalLongBalls': 26, 'accurateLongBalls': 9, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 17, 'goalsPrevented': 0.6412, 'passPerc': 0.5405405405405406, 'longballsPerc': 0.34615384615384615}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeb5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 18, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 3, 'interceptionWon': 3, 'minutesPlayed': 85, 'touches': 41, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0125721, 'passPerc': 0.9, 'longballsPerc': 0.75}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeb6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 15, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 4, 'totalClearance': 7, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 4, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.8333333333333334}, 'team': 'Las Palmas', 'name': 'juanma-herzog', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeb7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 7, 'duelWon': 8, 'totalClearance': 9, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 7, 'passPerc': 0.72, 'longballsPerc': 0.5555555555555556}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeb8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 22, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 8, 'challengeLost': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 6, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 24, 'expectedGoals': 0.0104, 'expectedAssists': 0.0186385, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.3}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeb9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 12, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 18, 'challengeLost': 3, 'totalContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 9, 'wasFouled': 7, 'fouls': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 9, 'expectedGoals': 0.0253, 'keyPass': 1, 'passPerc': 0.8, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeba'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 10, 'expectedAssists': 0.0093347, 'passPerc': 0.7407407407407407, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eebb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 12, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'interceptionWon': 2, 'wasFouled': 2, 'minutesPlayed': 85, 'touches': 48, 'possessionLostCtrl': 22, 'expectedGoals': 0.2139, 'keyPass': 1, 'expectedAssists': 0.00800042, 'passPerc': 0.5217391304347826, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'sandro-ramirez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eecb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 14, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 3, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 2, 'goalsPrevented': -0.146, 'passPerc': 0.875, 'longballsPerc': 0.8}, 'team': 'Villarreal', 'name': 'luiz-junior', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eecc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 58, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 2, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 16, 'keyPass': 1, 'expectedAssists': 0.414457, 'passPerc': 0.9206349206349206, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eecd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 76, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 5, 'expectedGoals': 0.0172, 'expectedAssists': 0.0214262, 'passPerc': 0.9382716049382716, 'longballsPerc': 0.5714285714285714}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eecf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 49, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.139176, 'passPerc': 0.9607843137254902, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eed2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 77, 'totalLongBalls': 10, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 7, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 8, 'expectedGoals': 0.0186, 'expectedAssists': 0.137321, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.9}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eed3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 43, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 30, 'expectedGoals': 0.3854, 'keyPass': 4, 'expectedAssists': 0.296549, 'passPerc': 0.7166666666666667, 'longballsPerc': 0.8571428571428571}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 8.3, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eed4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 14, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 8, 'expectedGoals': 0.0946, 'expectedAssists': 0.036989, 'passPerc': 0.875, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'gerard-moreno', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eed5'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 15, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 7, 'expectedGoals': 0.0393, 'keyPass': 2, 'expectedAssists': 0.15189, 'passPerc': 0.8823529411764706, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'ayoze-perez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876983201ea30d32eede'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 14, 'totalLongBalls': 27, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'goodHighClaim': 4, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 21, 'goalsPrevented': 0.5919, 'passPerc': 0.4, 'longballsPerc': 0.2222222222222222}, 'team': 'Real Betis', 'name': 'francisco-vieites', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32eedf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 3, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 10, 'passPerc': 0.7878787878787878, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32eee0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 29, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 3, 'totalClearance': 10, 'outfielderBlock': 2, 'interceptionWon': 6, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 8, 'expectedAssists': 0.00780934, 'passPerc': 0.7837837837837838, 'longballsPerc': 0.25}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32eee1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 26, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 1, 'totalContest': 1, 'totalClearance': 7, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 3, 'expectedAssists': 0.0107184, 'passPerc': 0.9285714285714286, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32eee2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 6, 'totalTackle': 2, 'wasFouled': 6, 'fouls': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 15, 'expectedAssists': 0.0117953, 'passPerc': 0.7878787878787878, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32eee3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 35, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 3, 'totalClearance': 6, 'interceptionWon': 5, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 9, 'expectedAssists': 0.0170609, 'passPerc': 0.8974358974358975, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'johnny', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32eee4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 3, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 88, 'touches': 58, 'possessionLostCtrl': 8, 'expectedGoals': 0.0184, 'keyPass': 2, 'expectedAssists': 0.0299144, 'passPerc': 0.9069767441860465, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876983201ea30d32eef5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 33, 'totalLongBalls': 29, 'accurateLongBalls': 17, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 12, 'expectedAssists': 0.00631755, 'goalsPrevented': -0.0616, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.5862068965517241}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eef6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 34, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 12, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 8, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 16, 'expectedGoals': 0.0176, 'passPerc': 0.8095238095238095, 'longballsPerc': 0.75}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eef7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 45, 'totalLongBalls': 12, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 10, 'expectedAssists': 0.00887065, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eef8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 36, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 3, 'interceptionWon': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 5, 'passPerc': 0.8780487804878049, 'longballsPerc': 0.4}, 'team': 'Deportivo Alavés', 'name': 'santiago-mourino', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eef9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 4, 'totalContest': 3, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 11, 'expectedGoals': 0.0321, 'passPerc': 0.7391304347826086, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eefb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 33, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 21, 'expectedGoals': 0.7346, 'keyPass': 2, 'expectedAssists': 0.151032, 'passPerc': 0.7021276595744681, 'longballsPerc': 0.25}, 'team': 'Deportivo Alavés', 'name': 'joan-jordan', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eefc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 5, 'duelLost': 13, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.0190488, 'passPerc': 0.72, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eefd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 2, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 9, 'expectedGoals': 0.0153, 'expectedAssists': 0.102787, 'passPerc': 0.72, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'jon-guridi', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32eeff'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 6, 'duelLost': 4, 'duelWon': 14, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 5, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 15, 'expectedGoals': 0.0934, 'keyPass': 1, 'expectedAssists': 0.0398785, 'passPerc': 0.7692307692307693, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'kike-garcia', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef0c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 26, 'totalLongBalls': 15, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'errorLeadToAGoal': 1, 'goodHighClaim': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 9, 'goalsPrevented': -0.1764, 'passPerc': 0.7428571428571429, 'longballsPerc': 0.4}, 'team': 'Athletic Club', 'name': 'unai-simon', 'rating': 6.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef0d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 16, 'expectedGoals': 0.044, 'keyPass': 2, 'expectedAssists': 0.179081, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef0e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 45, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 1, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 12, 'expectedAssists': 0.00747075, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.5454545454545454}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef0f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 41, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 3, 'totalClearance': 6, 'interceptionWon': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 18, 'passPerc': 0.6949152542372882, 'longballsPerc': 0.3}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef11'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 78, 'touches': 50, 'possessionLostCtrl': 9, 'expectedGoals': 0.0379, 'keyPass': 2, 'expectedAssists': 0.0331608, 'passPerc': 0.8611111111111112, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'inigo-ruiz-de-galarreta', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef12'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 29, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 14, 'duelWon': 13, 'challengeLost': 2, 'dispossessed': 4, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'interceptionWon': 2, 'totalTackle': 7, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 13, 'expectedGoals': 0.0579, 'expectedAssists': 0.0124605, 'passPerc': 0.8787878787878788, 'longballsPerc': 0.8333333333333334}, 'team': 'Athletic Club', 'name': 'mikel-jauregizar', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef13'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 17, 'expectedGoals': 0.0308, 'keyPass': 1, 'expectedAssists': 0.0298933, 'passPerc': 0.6190476190476191, 'longballsPerc': 0.3333333333333333}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876983201ea30d32ef15'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 10, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 10, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 8, 'wonContest': 2, 'shotOffTarget': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 78, 'touches': 38, 'possessionLostCtrl': 18, 'expectedGoals': 0.0912, 'expectedAssists': 0.0437039, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 6.1, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef23'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 7, 'goalsPrevented': 0.0177, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.2222222222222222}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef25'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 51, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 6, 'duelLost': 7, 'duelWon': 10, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 7, 'expectedAssists': 0.00575066, 'passPerc': 0.8793103448275862, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef26'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 57, 'totalLongBalls': 13, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 8, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 13, 'expectedGoals': 0.0408, 'expectedAssists': 0.0146709, 'passPerc': 0.8260869565217391, 'longballsPerc': 0.38461538461538464}, 'team': 'Atlético Madrid', 'name': 'clement-lenglet', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef27'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 17, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 8, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.441044, 'passPerc': 0.8157894736842105, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'javi-galan', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef29'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 53, 'totalLongBalls': 14, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 21, 'expectedGoals': 0.2196, 'keyPass': 1, 'expectedAssists': 0.31487, 'passPerc': 0.7681159420289855, 'longballsPerc': 0.5714285714285714}, 'team': 'Atlético Madrid', 'name': 'rodrigo-de-paul', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef2a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 50, 'totalLongBalls': 3, 'goalAssist': 0, 'duelLost': 3, 'totalContest': 2, 'shotOffTarget': 2, 'totalClearance': 3, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 86, 'touches': 68, 'possessionLostCtrl': 10, 'expectedGoals': 0.0736, 'expectedAssists': 0.0174579, 'passPerc': 0.8771929824561403, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef2d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 28, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 16, 'expectedGoals': 0.0943, 'keyPass': 1, 'expectedAssists': 0.209489, 'passPerc': 0.8484848484848485, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'julian-alvarez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef3a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 16, 'totalLongBalls': 29, 'accurateLongBalls': 14, 'goalAssist': 0, 'duelWon': 1, 'lastManTackle': 1, 'totalTackle': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 16, 'goalsPrevented': 0.1506, 'passPerc': 0.5, 'longballsPerc': 0.4827586206896552}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef3b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 11, 'expectedGoals': 0.0321, 'expectedAssists': 0.0120035, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.25}, 'team': 'Getafe', 'name': 'allan-nyom', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef3c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 2, 'duelWon': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0136089, 'passPerc': 0.9, 'longballsPerc': 0.875}, 'team': 'Getafe', 'name': 'domingos-duarte', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef3d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 77, 'touches': 45, 'possessionLostCtrl': 4, 'expectedAssists': 0.029292, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.7142857142857143}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef3e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 18, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 2, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 2, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 22, 'expectedAssists': 0.0127941, 'passPerc': 0.5454545454545454, 'longballsPerc': 0.2857142857142857}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef40'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 2, 'interceptionWon': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0177241, 'passPerc': 0.7241379310344828, 'longballsPerc': 0.6666666666666666}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef42'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 47, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 4, 'totalTackle': 1, 'wasFouled': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 12, 'expectedGoals': 0.0495, 'keyPass': 3, 'expectedAssists': 0.0987877, 'passPerc': 0.8867924528301887, 'longballsPerc': 0.3333333333333333}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef43'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 8, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 3, 'challengeLost': 3, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'minutesPlayed': 77, 'touches': 28, 'possessionLostCtrl': 14, 'expectedAssists': 0.00519824, 'passPerc': 0.5714285714285714, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'da-costa-coba-gomes', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef44'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 12, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 6, 'duelLost': 11, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 4, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 77, 'touches': 46, 'possessionLostCtrl': 20, 'expectedGoals': 0.0169, 'expectedAssists': 0.0102466, 'passPerc': 0.5454545454545454, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'alvaro-rodriguez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef50'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 16, 'totalLongBalls': 18, 'accurateLongBalls': 7, 'goalAssist': 0, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 11, 'goalsPrevented': -1.5401, 'passPerc': 0.5925925925925926, 'longballsPerc': 0.3888888888888889}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef51'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 6, 'totalContest': 4, 'wonContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 11, 'expectedAssists': 0.00697011, 'passPerc': 0.8125, 'longballsPerc': 1.0}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef52'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 36, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 8, 'expectedGoals': 0.2055, 'keyPass': 2, 'expectedAssists': 0.0453346, 'passPerc': 0.8372093023255814, 'longballsPerc': 0.7777777777777778}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef53'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 21, 'totalLongBalls': 9, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 14, 'expectedGoals': 0.1063, 'passPerc': 0.6363636363636364, 'longballsPerc': 0.1111111111111111}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef54'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 25, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0994178, 'passPerc': 0.8064516129032258, 'longballsPerc': 0.25}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef5a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 4, 'fouls': 3, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 13, 'expectedGoals': 0.5556, 'keyPass': 1, 'expectedAssists': 0.0810591, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'isi-palazon', 'rating': 8.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef67'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 4, 'goalsPrevented': -0.7992, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.2}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef68'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 58, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 79, 'touches': 91, 'possessionLostCtrl': 15, 'keyPass': 2, 'expectedAssists': 0.362898, 'passPerc': 0.9354838709677419, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef69'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 83, 'accuratePass': 77, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 9, 'expectedAssists': 0.00846363, 'passPerc': 0.927710843373494, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef6a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 60, 'totalLongBalls': 11, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 7, 'expectedGoals': 0.054, 'expectedAssists': 0.0093569, 'passPerc': 0.9230769230769231, 'longballsPerc': 0.8181818181818182}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef6b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 51, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 16, 'expectedAssists': 0.129339, 'passPerc': 0.85, 'longballsPerc': 0.375}, 'team': 'Real Madrid', 'name': 'fran-garcia', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef6c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 62, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 3, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 16, 'expectedGoals': 0.0255, 'keyPass': 1, 'expectedAssists': 0.0596351, 'passPerc': 0.8378378378378378, 'longballsPerc': 0.45454545454545453}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef6e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 32, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 2, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 3, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 3, 'totalOffside': 1, 'minutesPlayed': 79, 'touches': 55, 'possessionLostCtrl': 8, 'expectedGoals': 0.332, 'keyPass': 2, 'expectedAssists': 0.0404272, 'passPerc': 0.8421052631578947, 'longballsPerc': 0.8}, 'team': 'Real Madrid', 'name': 'arda-guler', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef6f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 13, 'expectedGoals': 0.0909, 'keyPass': 1, 'expectedAssists': 0.0288741, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef71'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 36, 'totalLongBalls': 2, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 4, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 16, 'expectedGoals': 0.1039, 'keyPass': 3, 'expectedAssists': 0.211113, 'passPerc': 0.8372093023255814, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'rodrygo', 'rating': 8.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32ef7d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 27, 'totalLongBalls': 27, 'accurateLongBalls': 10, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 3, 'wasFouled': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 18, 'goalsPrevented': 1.0884, 'passPerc': 0.6136363636363636, 'longballsPerc': 0.37037037037037035}, 'team': 'Sevilla', 'name': 'alvaro-fernandez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef7e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 42, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 3, 'minutesPlayed': 86, 'touches': 67, 'possessionLostCtrl': 9, 'expectedAssists': 0.00922699, 'passPerc': 0.9333333333333333, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'gonzalo-montiel', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef7f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 48, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 5, 'passPerc': 0.9230769230769231, 'longballsPerc': 0.42857142857142855}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef80'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 50, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'totalClearance': 2, 'interceptionWon': 2, 'minutesPlayed': 89, 'touches': 63, 'possessionLostCtrl': 5, 'expectedAssists': 0.0688486, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef81'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 39, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 8, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 24, 'keyPass': 1, 'expectedAssists': 0.0797141, 'passPerc': 0.6724137931034483, 'longballsPerc': 0.2222222222222222}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef83'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 33, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 4, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 12, 'expectedAssists': 0.00692442, 'passPerc': 0.8048780487804879, 'longballsPerc': 0.2857142857142857}, 'team': 'Sevilla', 'name': 'lucien-agoume', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef84'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 35, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 5, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 8, 'expectedGoals': 0.1567, 'keyPass': 3, 'expectedAssists': 0.0470785, 'passPerc': 0.875, 'longballsPerc': 0.6}, 'team': 'Sevilla', 'name': 'saul-niguez', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef87'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 10, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 9, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 21, 'expectedGoals': 0.2643, 'expectedAssists': 0.0343184, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32ef93'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 18, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'saves': 2, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 4, 'goalsPrevented': -0.1837, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef94'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 38, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 1, 'totalClearance': 5, 'interceptionWon': 4, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 9, 'expectedAssists': 0.0208349, 'passPerc': 0.8636363636363636, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef95'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 51, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 7, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 5, 'expectedAssists': 0.00518517, 'passPerc': 0.9107142857142857, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef96'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 72, 'totalLongBalls': 10, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0687008, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef97'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 23, 'expectedGoals': 0.0148, 'expectedAssists': 0.112483, 'passPerc': 0.75, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef99'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 34, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0196435, 'passPerc': 0.8717948717948718, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'ilaix-moriba', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32ef9b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 33, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 14, 'expectedGoals': 0.3142, 'keyPass': 1, 'expectedAssists': 0.181515, 'passPerc': 0.7674418604651163, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32efaa'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 12, 'totalLongBalls': 22, 'accurateLongBalls': 7, 'goalAssist': 0, 'goodHighClaim': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 16, 'goalsPrevented': -0.1319, 'passPerc': 0.4444444444444444, 'longballsPerc': 0.3181818181818182}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 6.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 4, 'bigChanceCreated': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0599265, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.2857142857142857}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efac'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 11, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 2, 'passPerc': 0.9428571428571428, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efad'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 41, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 5, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 5, 'expectedAssists': 0.00533192, 'passPerc': 0.9111111111111111, 'longballsPerc': 0.8}, 'team': 'Mallorca', 'name': 'jose-copete', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efae'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 2, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 12, 'keyPass': 3, 'expectedAssists': 0.117592, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efaf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 84, 'touches': 34, 'possessionLostCtrl': 8, 'expectedGoals': 0.1223, 'expectedAssists': 0.00879585, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'antonio-sanchez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efb1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelWon': 3, 'totalClearance': 7, 'outfielderBlock': 2, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 6, 'expectedAssists': 0.00919275, 'passPerc': 0.8518518518518519, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'omar-mascarell', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efb3'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 8, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 8, 'duelLost': 10, 'duelWon': 11, 'dispossessed': 4, 'totalContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 83, 'touches': 43, 'possessionLostCtrl': 21, 'expectedGoals': 0.8444, 'expectedAssists': 0.0115405, 'passPerc': 0.5333333333333333, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'cyle-larin', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32efc0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'errorLeadToAGoal': 1, 'minutesPlayed': 90, 'touches': 23, 'possessionLostCtrl': 1, 'goalsPrevented': -0.4768, 'passPerc': 0.9444444444444444, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 5.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32efc2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 94, 'accuratePass': 91, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 102, 'possessionLostCtrl': 3, 'expectedGoals': 0.019, 'expectedAssists': 0.0347884, 'passPerc': 0.9680851063829787, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32efc3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 119, 'accuratePass': 110, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 9, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 137, 'possessionLostCtrl': 19, 'expectedGoals': 0.0176, 'keyPass': 1, 'expectedAssists': 0.10872, 'passPerc': 0.9243697478991597, 'longballsPerc': 0.7777777777777778}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32efc5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 66, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 9, 'expectedGoals': 0.1871, 'keyPass': 2, 'expectedAssists': 0.0517928, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32efc8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 60, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 12, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 17, 'keyPass': 1, 'expectedAssists': 0.0545865, 'passPerc': 0.9523809523809523, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32efc9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 33, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'duelWon': 2, 'blockedScoringAttempt': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 15, 'expectedGoals': 0.0749, 'expectedAssists': 0.0867459, 'passPerc': 0.868421052631579, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'yaser-asprilla', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32efd7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'goodHighClaim': 3, 'punches': 2, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 7, 'passPerc': 0.72, 'longballsPerc': 0.36363636363636365}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efd8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 39, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 11, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.0654235, 'passPerc': 0.7959183673469388, 'longballsPerc': 0.16666666666666666}, 'team': 'Espanyol', 'name': 'alvaro-tejero', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efd9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 38, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 3, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 5, 'passPerc': 0.9047619047619048, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efda'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 43, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 10, 'expectedAssists': 0.0955059, 'passPerc': 0.86, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efdb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 3, 'challengeLost': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 12, 'expectedGoals': 0.0173, 'keyPass': 2, 'expectedAssists': 0.0298991, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.5714285714285714}, 'team': 'Espanyol', 'name': 'brian-olivan', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efdd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 13, 'keyPass': 1, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efde'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 38, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 7, 'expectedGoals': 0.0155, 'expectedAssists': 0.0336377, 'passPerc': 0.9047619047619048, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'pol-lozano', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efdf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 86, 'touches': 43, 'possessionLostCtrl': 16, 'expectedGoals': 0.0178, 'keyPass': 1, 'expectedAssists': 0.0164137, 'passPerc': 0.6875, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efe1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 12, 'expectedGoals': 0.1633, 'keyPass': 1, 'expectedAssists': 0.014874, 'passPerc': 0.631578947368421, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efed'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 32, 'totalLongBalls': 14, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 8, 'goalsPrevented': 0.5387, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efee'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'goalAssist': 0, 'totalCross': 6, 'duelWon': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 83, 'touches': 51, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0134458, 'passPerc': 0.8620689655172413, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32efef'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 74, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 94, 'possessionLostCtrl': 7, 'expectedAssists': 0.00573483, 'passPerc': 0.9135802469135802, 'longballsPerc': 0.42857142857142855}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32eff0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 72, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 4, 'expectedAssists': 0.0115997, 'passPerc': 0.9473684210526315, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32eff1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 87, 'touches': 59, 'possessionLostCtrl': 15, 'passPerc': 0.8055555555555556, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32eff2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 33, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 11, 'expectedAssists': 0.0907829, 'passPerc': 0.868421052631579, 'longballsPerc': 0.7777777777777778}, 'team': 'Osasuna', 'name': 'ruben-garcia', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32eff4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 53, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 8, 'expectedGoals': 0.0462, 'expectedAssists': 0.00672269, 'passPerc': 0.8833333333333333, 'longballsPerc': 0.6666666666666666}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32eff5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 42, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 9, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 4, 'shotOffTarget': 1, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 86, 'touches': 65, 'possessionLostCtrl': 14, 'expectedGoals': 0.057, 'keyPass': 1, 'expectedAssists': 0.07809, 'passPerc': 0.875, 'longballsPerc': 0.8}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32eff6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'goalAssist': 0, 'aerialLost': 7, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 19, 'possessionLostCtrl': 8, 'keyPass': 2, 'expectedAssists': 0.136406, 'passPerc': 0.6363636363636364, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f002'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 18, 'totalLongBalls': 19, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 4, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 14, 'goalsPrevented': 0.0333, 'passPerc': 0.5806451612903226, 'longballsPerc': 0.3157894736842105}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f003'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 17, 'expectedAssists': 0.00533416, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f004'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 23, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 6, 'duelLost': 4, 'duelWon': 8, 'totalContest': 1, 'totalClearance': 13, 'clearanceOffLine': 1, 'outfielderBlock': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 9, 'passPerc': 0.7419354838709677, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Valladolid', 'name': 'abdulay-juma-bah', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f005'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'totalClearance': 11, 'outfielderBlock': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 5, 'passPerc': 0.84, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'javi-sanchez', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f006'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 13, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 7, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f007'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 24, 'totalLongBalls': 5, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 10, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 10, 'passPerc': 0.7741935483870968, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f008'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 77, 'touches': 56, 'possessionLostCtrl': 11, 'expectedAssists': 0.0259535, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f009'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 17, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 6, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 7, 'expectedGoals': 0.3018, 'expectedAssists': 0.0059653, 'passPerc': 0.8095238095238095, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'anuar', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f019'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 15, 'totalLongBalls': 12, 'accurateLongBalls': 4, 'goalAssist': 0, 'errorLeadToAShot': 1, 'goodHighClaim': 1, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 9, 'goalsPrevented': -0.5946, 'passPerc': 0.6521739130434783, 'longballsPerc': 0.3333333333333333}, 'team': 'Valencia', 'name': 'stole-dimitrievski', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f01b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 57, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 9, 'duelWon': 9, 'challengeLost': 1, 'totalContest': 1, 'onTargetScoringAttempt': 2, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 5, 'expectedGoals': 0.1855, 'expectedAssists': 0.0122172, 'passPerc': 0.9344262295081968, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f01c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 53, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 69, 'possessionLostCtrl': 9, 'expectedAssists': 0.00624706, 'passPerc': 0.8833333333333333, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f01f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 77, 'totalLongBalls': 11, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalCross': 12, 'accurateCross': 2, 'aerialWon': 1, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 17, 'expectedGoals': 0.0867, 'keyPass': 2, 'expectedAssists': 0.275918, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.8181818181818182}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f021'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 17, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 23, 'expectedGoals': 0.0297, 'keyPass': 2, 'expectedAssists': 0.314014, 'passPerc': 0.8157894736842105, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f022'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 8, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 4, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 23, 'expectedGoals': 0.0382, 'keyPass': 1, 'expectedAssists': 0.0457952, 'passPerc': 0.8409090909090909, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f023'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 11, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 7, 'expectedGoals': 0.2288, 'keyPass': 3, 'expectedAssists': 0.116058, 'passPerc': 0.7333333333333333, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f030'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 10, 'totalLongBalls': 20, 'accurateLongBalls': 7, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 13, 'goalsPrevented': 0.0456, 'passPerc': 0.43478260869565216, 'longballsPerc': 0.35}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f031'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 7, 'totalContest': 1, 'totalClearance': 6, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 15, 'expectedAssists': 0.015016, 'passPerc': 0.6551724137931034, 'longballsPerc': 0.25}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f032'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 3, 'expectedAssists': 0.0192754, 'passPerc': 0.9032258064516129, 'longballsPerc': 0.8571428571428571}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f033'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 25, 'totalLongBalls': 14, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'shotOffTarget': 1, 'hitWoodwork': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 12, 'expectedGoals': 0.0225, 'keyPass': 1, 'expectedAssists': 0.00785312, 'passPerc': 0.6756756756756757, 'longballsPerc': 0.35714285714285715}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f034'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 2, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 19, 'expectedAssists': 0.0101905, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.3333333333333333}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f035'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 10, 'expectedGoals': 0.0396, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'allan-nyom', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f036'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 11, 'expectedGoals': 0.0582, 'keyPass': 2, 'expectedAssists': 0.0156546, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f037'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 12, 'expectedGoals': 0.0091, 'keyPass': 2, 'expectedAssists': 0.0658044, 'passPerc': 0.9024390243902439, 'longballsPerc': 0.75}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f038'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 9, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 75, 'touches': 42, 'possessionLostCtrl': 14, 'expectedGoals': 0.1458, 'keyPass': 1, 'expectedAssists': 0.0386856, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'da-costa-coba-gomes', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f039'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 16, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 4, 'duelLost': 10, 'duelWon': 9, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 82, 'touches': 43, 'possessionLostCtrl': 17, 'expectedGoals': 0.0634, 'keyPass': 2, 'expectedAssists': 0.0269268, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f03a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 15, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 8, 'aerialWon': 6, 'duelLost': 11, 'duelWon': 12, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 75, 'touches': 40, 'possessionLostCtrl': 12, 'expectedGoals': 0.0492, 'keyPass': 1, 'expectedAssists': 0.0162948, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'alvaro-rodriguez', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f045'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 22, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 3, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 5, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 4, 'goalsPrevented': -0.0905, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 8.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f046'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 79, 'touches': 62, 'possessionLostCtrl': 9, 'expectedAssists': 0.0301061, 'passPerc': 0.8, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f047'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 61, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 8, 'passPerc': 0.8970588235294118, 'longballsPerc': 0.2}, 'team': 'Espanyol', 'name': 'sergi-gomez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f048'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 59, 'totalLongBalls': 17, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 5, 'aerialWon': 5, 'duelLost': 9, 'duelWon': 7, 'challengeLost': 2, 'totalClearance': 10, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.140595, 'passPerc': 0.7375, 'longballsPerc': 0.29411764705882354}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f049'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 30, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 2, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 20, 'expectedGoals': 0.1389, 'keyPass': 1, 'expectedAssists': 0.078313, 'passPerc': 0.7317073170731707, 'longballsPerc': 0.3}, 'team': 'Espanyol', 'name': 'brian-olivan', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f04a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 38, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 5, 'fouls': 4, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 10, 'expectedAssists': 0.00589097, 'passPerc': 0.8636363636363636, 'longballsPerc': 0.8}, 'team': 'Espanyol', 'name': 'pol-lozano', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f04c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 22, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 8, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 3, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 23, 'expectedGoals': 0.4414, 'expectedAssists': 0.0284579, 'passPerc': 0.55, 'longballsPerc': 0.4}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f04e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 8, 'expectedGoals': 0.0764, 'expectedAssists': 0.0135606, 'passPerc': 0.8125, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f04f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 10, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 79, 'touches': 38, 'possessionLostCtrl': 18, 'expectedGoals': 0.024, 'keyPass': 1, 'expectedAssists': 0.104715, 'passPerc': 0.47619047619047616, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'irvin-cardona', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f05c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 8, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'minutesPlayed': 90, 'touches': 15, 'possessionLostCtrl': 4, 'goalsPrevented': -1.643, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.25}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 5.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f05d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 78, 'accuratePass': 70, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 6, 'dispossessed': 1, 'bigChanceCreated': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 107, 'possessionLostCtrl': 12, 'keyPass': 3, 'expectedAssists': 0.450421, 'passPerc': 0.8974358974358975, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f05e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 74, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 7, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 5, 'expectedAssists': 0.00906972, 'passPerc': 0.9367088607594937, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f05f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 75, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 3, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 79, 'touches': 94, 'possessionLostCtrl': 11, 'expectedAssists': 0.00964739, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.3333333333333333}, 'team': 'Atlético Madrid', 'name': 'clement-lenglet', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f060'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 46, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 10, 'duelWon': 5, 'challengeLost': 3, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 17, 'expectedGoals': 0.0173, 'keyPass': 1, 'expectedAssists': 0.0760032, 'passPerc': 0.8214285714285714, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'javi-galan', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f061'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 51, 'possessionLostCtrl': 8, 'expectedGoals': 0.0723, 'keyPass': 1, 'expectedAssists': 0.0371983, 'passPerc': 0.8285714285714286, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'giuliano-simeone', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f063'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 67, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 3, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 6, 'duelWon': 10, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.25217, 'passPerc': 0.9054054054054054, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f065'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 46, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'hitWoodwork': 1, 'goals': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 20, 'expectedGoals': 0.6741, 'keyPass': 1, 'expectedAssists': 0.370961, 'passPerc': 0.8518518518518519, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 9.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f066'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'fouls': 3, 'minutesPlayed': 75, 'touches': 37, 'possessionLostCtrl': 14, 'expectedGoals': 0.0167, 'keyPass': 1, 'expectedAssists': 0.0884221, 'passPerc': 0.6551724137931034, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'julian-alvarez', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f073'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 22, 'totalLongBalls': 30, 'accurateLongBalls': 7, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 5, 'saves': 5, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 23, 'goalsPrevented': -1.4357, 'passPerc': 0.4888888888888889, 'longballsPerc': 0.23333333333333334}, 'team': 'Sevilla', 'name': 'alvaro-fernandez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f074'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 46, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 3, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 9, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 12, 'expectedAssists': 0.00630885, 'passPerc': 0.9019607843137255, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f075'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 66, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 7, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 9, 'expectedAssists': 0.00876851, 'passPerc': 0.88, 'longballsPerc': 0.4444444444444444}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f076'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 60, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0131242, 'passPerc': 0.8955223880597015, 'longballsPerc': 0.2857142857142857}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f077'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 32, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 2, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 2, 'bigChanceCreated': 2, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 13, 'keyPass': 2, 'expectedAssists': 0.510381, 'passPerc': 0.7441860465116279, 'longballsPerc': 0.4}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f078'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 12, 'expectedGoals': 0.1744, 'expectedAssists': 0.0107345, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'juanlu-sanchez', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f079'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 42, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 52, 'possessionLostCtrl': 7, 'expectedAssists': 0.0154159, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'lucien-agoume', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f07a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 54, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 10, 'expectedGoals': 0.0163, 'expectedAssists': 0.0269891, 'passPerc': 0.8852459016393442, 'longballsPerc': 0.6666666666666666}, 'team': 'Sevilla', 'name': 'djibril-sow', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f07b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 33, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 11, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 4, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 4, 'minutesPlayed': 89, 'touches': 59, 'possessionLostCtrl': 13, 'expectedGoals': 0.0518, 'expectedAssists': 0.0337058, 'passPerc': 0.9428571428571428, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f07c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'duelLost': 14, 'duelWon': 1, 'dispossessed': 5, 'totalContest': 5, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'fouls': 2, 'minutesPlayed': 89, 'touches': 53, 'possessionLostCtrl': 22, 'expectedGoals': 0.1444, 'expectedAssists': 0.0115141, 'passPerc': 0.7, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f089'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 4, 'goalsPrevented': -0.0664, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f08a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 40, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'dispossessed': 1, 'totalClearance': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.0281354, 'passPerc': 0.9302325581395349, 'longballsPerc': 0.6666666666666666}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f08b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 70, 'totalLongBalls': 15, 'accurateLongBalls': 9, 'goalAssist': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 3, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 11, 'expectedGoals': 0.2655, 'keyPass': 1, 'expectedAssists': 0.477363, 'passPerc': 0.8641975308641975, 'longballsPerc': 0.6}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f08c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 64, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 5, 'expectedAssists': 0.0132074, 'passPerc': 0.9411764705882353, 'longballsPerc': 0.8}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f08e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 49, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 3, 'duelLost': 3, 'duelWon': 3, 'totalContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 22, 'expectedGoals': 0.0225, 'keyPass': 3, 'expectedAssists': 0.343336, 'passPerc': 0.7903225806451613, 'longballsPerc': 0.16666666666666666}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f08f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 8, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 5, 'minutesPlayed': 89, 'touches': 44, 'possessionLostCtrl': 12, 'expectedGoals': 0.2517, 'keyPass': 1, 'expectedAssists': 0.0273947, 'passPerc': 0.7241379310344828, 'longballsPerc': 0.6}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f090'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 42, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 4, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'wasFouled': 4, 'minutesPlayed': 83, 'touches': 73, 'possessionLostCtrl': 13, 'expectedGoals': 0.1557, 'keyPass': 5, 'expectedAssists': 0.43837, 'passPerc': 0.875, 'longballsPerc': 0.8571428571428571}, 'team': 'Osasuna', 'name': 'ruben-garcia', 'rating': 8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f091'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 3, 'wasFouled': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 16, 'keyPass': 1, 'expectedAssists': 0.0654886, 'passPerc': 0.8157894736842105, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f092'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 22, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 17, 'expectedGoals': 0.0672, 'keyPass': 1, 'expectedAssists': 0.129414, 'passPerc': 0.7096774193548387, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f093'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 9, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 11, 'expectedGoals': 0.7012, 'passPerc': 0.6363636363636364, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 17, 'totalLongBalls': 28, 'accurateLongBalls': 14, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 3, 'totalClearance': 4, 'wasFouled': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'punches': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 15, 'expectedAssists': 0.00523824, 'goalsPrevented': 0.3603, 'passPerc': 0.5483870967741935, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 8.4, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 15, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 4, 'expectedAssists': 0.0283446, 'passPerc': 0.9375, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 11, 'outfielderBlock': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 9, 'expectedAssists': 0.0142763, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.25}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 25, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'bigChanceCreated': 1, 'totalClearance': 5, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0609446, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.2857142857142857}, 'team': 'Deportivo Alavés', 'name': 'santiago-mourino', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 20, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 4, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 16, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.585205, 'passPerc': 0.8888888888888888, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 11, 'expectedGoals': 0.1182, 'keyPass': 1, 'expectedAssists': 0.0169405, 'passPerc': 0.8378378378378378, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'joan-jordan', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 3, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 7, 'expectedAssists': 0.00689588, 'passPerc': 0.9230769230769231, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0a9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 39, 'possessionLostCtrl': 12, 'expectedAssists': 0.0115003, 'passPerc': 0.7, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'jon-guridi', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0aa'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 14, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 6, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'goals': 2, 'outfielderBlock': 1, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 84, 'touches': 36, 'possessionLostCtrl': 15, 'expectedGoals': 1.3837, 'expectedAssists': 0.00863482, 'passPerc': 0.6086956521739131, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'kike-garcia', 'rating': 8.5, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f0b7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 24, 'totalLongBalls': 21, 'accurateLongBalls': 12, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 9, 'goalsPrevented': 0.441, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.5714285714285714}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0b8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0611206, 'passPerc': 0.8055555555555556, 'longballsPerc': 0.4}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0b9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 52, 'totalLongBalls': 12, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 5, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 11, 'expectedAssists': 0.00832294, 'passPerc': 0.8387096774193549, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0ba'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 35, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 6, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 6, 'expectedGoals': 0.2206, 'passPerc': 0.875, 'longballsPerc': 0.4}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0bb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 36, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 2, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 8, 'expectedGoals': 0.0245, 'expectedAssists': 0.0113974, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0bc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 85, 'touches': 51, 'possessionLostCtrl': 10, 'keyPass': 3, 'expectedAssists': 0.29682, 'passPerc': 0.85, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'inigo-ruiz-de-galarreta', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0be'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 17, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 4, 'onTargetScoringAttempt': 2, 'goals': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 85, 'touches': 43, 'possessionLostCtrl': 15, 'expectedGoals': 0.3456, 'expectedAssists': 0.0110905, 'passPerc': 0.7083333333333334, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0bf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 28, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 17, 'expectedGoals': 0.5154, 'keyPass': 1, 'expectedAssists': 0.0513096, 'passPerc': 0.8484848484848485, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'oihan-sancet', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0cf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 49, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 4, 'totalTackle': 2, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0496724, 'passPerc': 0.9074074074074074, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0d0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 86, 'accuratePass': 81, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 7, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 5, 'expectedAssists': 0.0106963, 'passPerc': 0.9418604651162791, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0d1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 90, 'accuratePass': 80, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 100, 'possessionLostCtrl': 10, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.45454545454545453}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0d2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 44, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 10, 'totalContest': 4, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 4, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 11, 'expectedGoals': 0.0132, 'keyPass': 1, 'expectedAssists': 0.083482, 'passPerc': 0.88, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'juan-bernat', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0d3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 18, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 43, 'possessionLostCtrl': 15, 'expectedGoals': 0.3198, 'expectedAssists': 0.0127669, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'yeremy-pino', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0d4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 51, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 7, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 9, 'expectedGoals': 0.2258, 'keyPass': 1, 'expectedAssists': 0.0780788, 'passPerc': 0.8793103448275862, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0d6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 22, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 3, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 5, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 22, 'expectedGoals': 0.0926, 'keyPass': 3, 'expectedAssists': 0.514259, 'passPerc': 0.6111111111111112, 'longballsPerc': 0.25}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0d7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 29, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 8, 'expectedGoals': 0.0694, 'expectedAssists': 0.0356147, 'passPerc': 0.8529411764705882, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 15, 'totalLongBalls': 25, 'accurateLongBalls': 7, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 18, 'expectedAssists': 0.0104631, 'goalsPrevented': -0.8831, 'passPerc': 0.45454545454545453, 'longballsPerc': 0.28}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 35, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0741889, 'passPerc': 0.7608695652173914, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 49, 'totalLongBalls': 9, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 8, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 12, 'passPerc': 0.8032786885245902, 'longballsPerc': 0.1111111111111111}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 36, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 6, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 9, 'passPerc': 0.8, 'longballsPerc': 0.2222222222222222}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 2, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.0618009, 'passPerc': 0.8125, 'longballsPerc': 0.75}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 29, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 3, 'dispossessed': 2, 'totalContest': 3, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 5, 'minutesPlayed': 79, 'touches': 52, 'possessionLostCtrl': 13, 'expectedAssists': 0.0191567, 'passPerc': 0.7837837837837838, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'shotOffTarget': 2, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 2, 'errorLeadToAGoal': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 14, 'expectedGoals': 0.2218, 'keyPass': 1, 'expectedAssists': 0.0648266, 'passPerc': 0.8222222222222222, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0e9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 7, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'outfielderBlock': 1, 'wasFouled': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 13, 'expectedGoals': 0.101, 'keyPass': 2, 'expectedAssists': 0.139774, 'passPerc': 0.6363636363636364, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'diego-garcia', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0ea'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 35, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 8, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 23, 'expectedGoals': 0.1503, 'keyPass': 1, 'expectedAssists': 0.174423, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'oscar-rodriguez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0ec'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 11, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 21, 'expectedGoals': 0.0358, 'expectedAssists': 0.0160571, 'passPerc': 0.35294117647058826, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f0f8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 16, 'totalLongBalls': 24, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 16, 'goalsPrevented': 0.6456, 'passPerc': 0.5, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0f9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 28, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 4, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 9, 'expectedAssists': 0.0134087, 'passPerc': 0.8484848484848485, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0fa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 7, 'expectedGoals': 0.0252, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.4}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0fb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 32, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 8, 'challengeLost': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 9, 'passPerc': 0.7804878048780488, 'longballsPerc': 0.375}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0fe'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 78, 'touches': 44, 'possessionLostCtrl': 10, 'expectedGoals': 0.0919, 'keyPass': 2, 'expectedAssists': 0.0630247, 'passPerc': 0.76, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f0ff'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 26, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 10, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 24, 'expectedGoals': 0.5562, 'keyPass': 2, 'expectedAssists': 0.0858124, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f100'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 2, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 14, 'expectedGoals': 0.6743, 'expectedAssists': 0.0534404, 'passPerc': 0.7916666666666666, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f101'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 3, 'minutesPlayed': 77, 'touches': 30, 'possessionLostCtrl': 7, 'keyPass': 2, 'expectedAssists': 0.116349, 'passPerc': 0.7647058823529411, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f102'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 9, 'expectedGoals': 0.2104, 'keyPass': 1, 'expectedAssists': 0.472458, 'passPerc': 0.631578947368421, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'mikel-oyarzabal', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f10f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 4, 'goalsPrevented': -1.4139, 'passPerc': 0.875, 'longballsPerc': 0.625}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f110'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'challengeLost': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 5, 'expectedAssists': 0.0135306, 'passPerc': 0.9069767441860465, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f111'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 56, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 4, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.3333333333333333}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f112'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 65, 'totalLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 2, 'lastManTackle': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 7, 'expectedGoals': 0.0444, 'expectedAssists': 0.0278784, 'passPerc': 0.9154929577464789, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f113'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 48, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 6, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.0939857, 'passPerc': 0.9056603773584906, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f114'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 49, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0229327, 'passPerc': 0.9607843137254902, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f115'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 52, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0310145, 'passPerc': 0.9122807017543859, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'oriol-romeu', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f116'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 2, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 17, 'expectedGoals': 0.1362, 'keyPass': 1, 'expectedAssists': 0.0695067, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'yaser-asprilla', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f117'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 17, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalTackle': 4, 'minutesPlayed': 78, 'touches': 29, 'possessionLostCtrl': 6, 'expectedGoals': 0.0635, 'keyPass': 1, 'expectedAssists': 0.0156579, 'passPerc': 0.8095238095238095, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'donny-van-de-beek', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f126'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 24, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 3, 'goalsPrevented': 0.1781, 'passPerc': 0.9230769230769231, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f127'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 54, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 9, 'expectedAssists': 0.0355095, 'passPerc': 0.8852459016393442, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f128'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 76, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 3, 'expectedGoals': 0.3579, 'expectedAssists': 0.0206987, 'passPerc': 0.9620253164556962, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f129'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 85, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'duelWon': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 102, 'possessionLostCtrl': 5, 'expectedGoals': 0.0209, 'expectedAssists': 0.0138753, 'passPerc': 0.9659090909090909, 'longballsPerc': 0.8333333333333334}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f12a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 43, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'minutesPlayed': 79, 'touches': 55, 'possessionLostCtrl': 2, 'expectedAssists': 0.0240067, 'passPerc': 0.9772727272727273, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'ferland-mendy', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f12b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 57, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 3, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 2, 'minutesPlayed': 79, 'touches': 69, 'possessionLostCtrl': 2, 'expectedAssists': 0.0246769, 'passPerc': 0.9661016949152542, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f12c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 112, 'accuratePass': 103, 'totalLongBalls': 10, 'accurateLongBalls': 8, 'goalAssist': 1, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'bigChanceCreated': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 121, 'possessionLostCtrl': 12, 'keyPass': 4, 'expectedAssists': 0.352819, 'passPerc': 0.9196428571428571, 'longballsPerc': 0.8}, 'team': 'Real Madrid', 'name': 'luka-modric', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f12d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 51, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 72, 'possessionLostCtrl': 10, 'expectedGoals': 0.1036, 'keyPass': 2, 'expectedAssists': 0.0256938, 'passPerc': 0.9107142857142857, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'arda-guler', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f12f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 38, 'totalLongBalls': 3, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 14, 'expectedGoals': 0.0501, 'expectedAssists': 0.0233355, 'passPerc': 0.8260869565217391, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'brahim-diaz', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f130'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 22, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 2, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'goals': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 79, 'touches': 40, 'possessionLostCtrl': 11, 'expectedGoals': 0.3306, 'expectedAssists': 0.0264697, 'passPerc': 0.9166666666666666, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f139'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 5, 'keyPass': 1, 'goalsPrevented': -0.2692, 'passPerc': 0.8387096774193549, 'longballsPerc': 0.5454545454545454}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f13a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 29, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'totalContest': 4, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 23, 'expectedGoals': 0.0193, 'expectedAssists': 0.0173187, 'passPerc': 0.7073170731707317, 'longballsPerc': 0.3333333333333333}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f13b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 39, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 5, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 7, 'expectedGoals': 0.1201, 'expectedAssists': 0.0187906, 'passPerc': 0.8478260869565217, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f13c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 57, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 3, 'interceptionWon': 3, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 10, 'expectedAssists': 0.010422, 'passPerc': 0.8769230769230769, 'longballsPerc': 0.2}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f13d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 53, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 6, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 7, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 80, 'possessionLostCtrl': 6, 'expectedGoals': 0.0638, 'expectedAssists': 0.0140171, 'passPerc': 0.9137931034482759, 'longballsPerc': 0.8571428571428571}, 'team': 'Valencia', 'name': 'gasiorowski-yarek', 'rating': 7.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f13f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 4, 'aerialLost': 1, 'duelLost': 10, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 5, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 1, 'totalTackle': 3, 'minutesPlayed': 89, 'touches': 64, 'possessionLostCtrl': 27, 'keyPass': 3, 'expectedAssists': 0.604463, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f141'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 44, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 3, 'onTargetScoringAttempt': 2, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 18, 'expectedGoals': 0.0546, 'keyPass': 1, 'expectedAssists': 0.0362071, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'javier-guerra', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f143'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 8, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 12, 'expectedGoals': 0.2342, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f14f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 19, 'totalLongBalls': 28, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 3, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'errorLeadToAShot': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 5, 'punches': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 23, 'goalsPrevented': 0.6838, 'passPerc': 0.475, 'longballsPerc': 0.25}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f150'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.353398, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f151'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 23, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 7, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 10, 'expectedAssists': 0.0132365, 'passPerc': 0.696969696969697, 'longballsPerc': 0.2727272727272727}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f152'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 10, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 7, 'passPerc': 0.78125, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f153'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 7, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 9, 'expectedAssists': 0.0290514, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f154'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 26, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 14, 'expectedGoals': 0.3072, 'expectedAssists': 0.00597455, 'passPerc': 0.7027027027027027, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'ismaila-ciss', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f155'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 17, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 3, 'dispossessed': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 78, 'touches': 36, 'possessionLostCtrl': 5, 'passPerc': 0.8095238095238095, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f158'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 6, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 7, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 31, 'possessionLostCtrl': 10, 'expectedGoals': 0.3432, 'passPerc': 0.46153846153846156, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f166'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 18, 'totalLongBalls': 18, 'accurateLongBalls': 8, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 10, 'goalsPrevented': -0.3133, 'passPerc': 0.6428571428571429, 'longballsPerc': 0.4444444444444444}, 'team': 'Real Betis', 'name': 'francisco-vieites', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f167'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 8, 'expectedAssists': 0.00584937, 'passPerc': 0.782608695652174, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f168'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 28, 'totalLongBalls': 15, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 7, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 11, 'expectedGoals': 0.0148, 'passPerc': 0.7368421052631579, 'longballsPerc': 0.4666666666666667}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f169'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 4, 'expectedGoals': 0.1097, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.4}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f16b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 76, 'touches': 28, 'possessionLostCtrl': 9, 'passPerc': 0.6956521739130435, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'mateo-flores', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f16c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 30, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 6, 'expectedGoals': 0.8629, 'keyPass': 2, 'expectedAssists': 0.0168507, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.6}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f16d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 7, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 23, 'possessionLostCtrl': 5, 'expectedGoals': 0.2317, 'keyPass': 1, 'expectedAssists': 0.160266, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'chimy-avila', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f16e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 4, 'errorLeadToAShot': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 20, 'expectedGoals': 0.8144, 'keyPass': 1, 'expectedAssists': 0.0612225, 'passPerc': 0.725, 'longballsPerc': 0.8}, 'team': 'Real Betis', 'name': 'lo-celso-giovani', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f16f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 18, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'minutesPlayed': 86, 'touches': 45, 'possessionLostCtrl': 18, 'expectedGoals': 0.8646, 'keyPass': 2, 'expectedAssists': 0.106307, 'passPerc': 0.5806451612903226, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 6.2, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f170'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 8, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'penaltyWon': 1, 'minutesPlayed': 77, 'touches': 19, 'possessionLostCtrl': 4, 'expectedGoals': 0.0423, 'expectedAssists': 0.0148763, 'passPerc': 0.8, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'vitor-roque', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f17c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 25, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 7, 'goalsPrevented': 0.7517, 'passPerc': 0.78125, 'longballsPerc': 0.125}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f17d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 47, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 5, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 21, 'expectedGoals': 0.0453, 'keyPass': 1, 'expectedAssists': 0.542172, 'passPerc': 0.8245614035087719, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f17e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 100, 'accuratePass': 92, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 6, 'totalClearance': 5, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 110, 'possessionLostCtrl': 9, 'expectedAssists': 0.0102222, 'passPerc': 0.92, 'longballsPerc': 0.4}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f17f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 90, 'accuratePass': 82, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 6, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 98, 'possessionLostCtrl': 8, 'expectedAssists': 0.0245268, 'passPerc': 0.9111111111111111, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f180'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 1, 'minutesPlayed': 88, 'touches': 52, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0100309, 'passPerc': 0.84375, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 6.1, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f182'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 57, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 7, 'expectedGoals': 0.0227, 'expectedAssists': 0.0172235, 'passPerc': 0.9047619047619048, 'longballsPerc': 0.6}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f184'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 17, 'totalLongBalls': 2, 'goalAssist': 1, 'totalCross': 4, 'duelLost': 6, 'duelWon': 11, 'totalContest': 10, 'wonContest': 6, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 19, 'expectedGoals': 0.1927, 'keyPass': 1, 'expectedAssists': 0.234411, 'passPerc': 0.68, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764876a83201ea30d32f193'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 7, 'goalsPrevented': 0.2539, 'passPerc': 0.7878787878787878, 'longballsPerc': 0.4166666666666667}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f195'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 72, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 7, 'duelWon': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 5, 'expectedAssists': 0.00696894, 'passPerc': 0.9473684210526315, 'longballsPerc': 0.75}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f196'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 61, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 4, 'passPerc': 0.9384615384615385, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f197'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 34, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 17, 'keyPass': 1, 'expectedAssists': 0.0142397, 'passPerc': 0.7906976744186046, 'longballsPerc': 0.4444444444444444}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f199'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 78, 'accuratePass': 70, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 10, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 6, 'minutesPlayed': 90, 'touches': 90, 'possessionLostCtrl': 8, 'expectedAssists': 0.0254517, 'passPerc': 0.8974358974358975, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f19a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 3, 'goals': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 88, 'touches': 47, 'possessionLostCtrl': 19, 'expectedGoals': 0.2713, 'keyPass': 1, 'expectedAssists': 0.120945, 'passPerc': 0.7407407407407407, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'sandro-ramirez', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f19b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 17, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 87, 'touches': 31, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0179966, 'passPerc': 0.7083333333333334, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f19c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 14, 'duelWon': 6, 'challengeLost': 3, 'dispossessed': 4, 'totalContest': 6, 'wonContest': 2, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 18, 'expectedGoals': 0.031, 'keyPass': 1, 'expectedAssists': 0.0842914, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 6.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f19d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 5, 'goalAssist': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 78, 'touches': 20, 'possessionLostCtrl': 10, 'expectedGoals': 0.0954, 'keyPass': 1, 'expectedAssists': 0.0248579, 'passPerc': 0.45454545454545453, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'fabio-silva', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1aa'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 33, 'totalLongBalls': 12, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 6, 'goalsPrevented': 0.1854, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1ab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 22, 'totalLongBalls': 10, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 19, 'keyPass': 2, 'expectedAssists': 0.216555, 'passPerc': 0.6111111111111112, 'longballsPerc': 0.2}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1ac'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 34, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 85, 'touches': 51, 'possessionLostCtrl': 10, 'expectedGoals': 0.0338, 'passPerc': 0.8095238095238095, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1ad'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 44, 'totalLongBalls': 10, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 12, 'passPerc': 0.8148148148148148, 'longballsPerc': 0.1}, 'team': 'Real Valladolid', 'name': 'javi-sanchez', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1ae'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 5, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.15731, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.75}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1af'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 35, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 6, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 3, 'totalClearance': 3, 'interceptionWon': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 11, 'passPerc': 0.813953488372093, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1b0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'totalContest': 2, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 85, 'touches': 42, 'possessionLostCtrl': 12, 'expectedAssists': 0.0111643, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'ivan-sanchez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1b2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 75, 'touches': 40, 'possessionLostCtrl': 10, 'expectedGoals': 0.3595, 'expectedAssists': 0.00621839, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1b3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 13, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 6, 'expectedGoals': 0.0776, 'keyPass': 2, 'expectedAssists': 0.314539, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'mamadou-sylla', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1c0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 5, 'goalsPrevented': 1.851, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.16666666666666666}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1c1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 44, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 8, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 11, 'expectedAssists': 0.0348951, 'passPerc': 0.8301886792452831, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1c2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 41, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 6, 'totalClearance': 5, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 3, 'keyPass': 1, 'expectedAssists': 0.0133142, 'passPerc': 0.9534883720930233, 'longballsPerc': 0.3333333333333333}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1c3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 82, 'accuratePass': 77, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 4, 'totalClearance': 6, 'outfielderBlock': 1, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0166809, 'passPerc': 0.9390243902439024, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1c4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 34, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'outfielderBlock': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 17, 'expectedGoals': 0.0341, 'expectedAssists': 0.290618, 'passPerc': 0.7906976744186046, 'longballsPerc': 0.8}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1c5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 47, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 86, 'touches': 67, 'possessionLostCtrl': 6, 'expectedGoals': 0.0149, 'expectedAssists': 0.032983, 'passPerc': 0.9038461538461539, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1c6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 53, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 7, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 5, 'expectedGoals': 0.0154, 'keyPass': 2, 'expectedAssists': 0.0563967, 'passPerc': 0.9298245614035088, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'ilaix-moriba', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1c7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 34, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 4, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 87, 'touches': 69, 'possessionLostCtrl': 21, 'expectedGoals': 0.1427, 'keyPass': 1, 'expectedAssists': 0.0935724, 'passPerc': 0.7083333333333334, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876a83201ea30d32f1d7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 27, 'totalLongBalls': 14, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 8, 'goalsPrevented': -1.597, 'passPerc': 0.7941176470588235, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1d8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 30, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 4, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 14, 'expectedAssists': 0.0163106, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'mateu-morey', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1d9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 58, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 5, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 14, 'expectedAssists': 0.00508814, 'passPerc': 0.8285714285714286, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1da'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 62, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 69, 'possessionLostCtrl': 1, 'expectedGoals': 0.0362, 'expectedAssists': 0.00690271, 'passPerc': 0.9841269841269841, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1db'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 57, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 11, 'expectedGoals': 0.0323, 'keyPass': 1, 'expectedAssists': 0.106286, 'passPerc': 0.9047619047619048, 'longballsPerc': 0.75}, 'team': 'Mallorca', 'name': 'siebe-van-der-heyden', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1dc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 53, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 1, 'interceptionWon': 7, 'fouls': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 8, 'expectedAssists': 0.0104122, 'passPerc': 0.8833333333333333, 'longballsPerc': 0.6}, 'team': 'Mallorca', 'name': 'omar-mascarell', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1dd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 38, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 7, 'dispossessed': 3, 'totalContest': 1, 'totalClearance': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 65, 'possessionLostCtrl': 18, 'keyPass': 1, 'expectedAssists': 0.085416, 'passPerc': 0.7916666666666666, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1df'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceCreated': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 84, 'touches': 40, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.355596, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'dani-rodriguez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876a83201ea30d32f1e1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 4, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 31, 'possessionLostCtrl': 8, 'expectedGoals': 0.7121, 'expectedAssists': 0.010418, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'cyle-larin', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f1ee'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 5, 'goalsPrevented': -0.5011, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.16666666666666666}, 'team': 'Sevilla', 'name': 'alvaro-fernandez', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1ef'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 2, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 86, 'touches': 60, 'possessionLostCtrl': 16, 'expectedGoals': 0.0571, 'keyPass': 1, 'expectedAssists': 0.0308532, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1f0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 59, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 13, 'expectedGoals': 0.0642, 'expectedAssists': 0.0286425, 'passPerc': 0.855072463768116, 'longballsPerc': 0.42857142857142855}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1f1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 46, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'shotOffTarget': 2, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 12, 'expectedGoals': 0.0475, 'passPerc': 0.8363636363636363, 'longballsPerc': 0.375}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1f3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'wasFouled': 5, 'fouls': 2, 'minutesPlayed': 75, 'touches': 39, 'possessionLostCtrl': 5, 'expectedGoals': 0.2715, 'expectedAssists': 0.0345737, 'passPerc': 0.8620689655172413, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'djibril-sow', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1f4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 49, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 7, 'duelLost': 6, 'duelWon': 9, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 6, 'expectedGoals': 0.0434, 'keyPass': 1, 'expectedAssists': 0.0733428, 'passPerc': 0.8909090909090909, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1f5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 58, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 86, 'touches': 72, 'possessionLostCtrl': 9, 'expectedGoals': 0.0288, 'keyPass': 1, 'expectedAssists': 0.0457154, 'passPerc': 0.8787878787878788, 'longballsPerc': 0.5714285714285714}, 'team': 'Sevilla', 'name': 'albert-sambi-lokonga', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1f6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 4, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 15, 'expectedGoals': 0.7963, 'keyPass': 2, 'expectedAssists': 0.291576, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f1f7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0617833, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f205'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 16, 'totalLongBalls': 17, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelWon': 2, 'totalClearance': 1, 'wasFouled': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 14, 'goalsPrevented': 0.6916, 'passPerc': 0.5714285714285714, 'longballsPerc': 0.29411764705882354}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f206'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 14, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 6, 'accurateCross': 3, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'totalContest': 1, 'bigChanceCreated': 2, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 15, 'keyPass': 3, 'expectedAssists': 0.248614, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f207'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 18, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 8, 'outfielderBlock': 2, 'interceptionWon': 4, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 13, 'passPerc': 0.6206896551724138, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f208'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 21, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'totalClearance': 7, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 1, 'passPerc': 0.9545454545454546, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f209'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 83, 'touches': 40, 'possessionLostCtrl': 19, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'juan-cruz', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f20a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 8, 'expectedGoals': 0.1034, 'expectedAssists': 0.012656, 'passPerc': 0.7407407407407407, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f20c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 22, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 9, 'expectedGoals': 0.04, 'keyPass': 1, 'expectedAssists': 0.0664929, 'passPerc': 0.8461538461538461, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f20e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 3, 'goalAssist': 0, 'aerialLost': 8, 'aerialWon': 5, 'duelLost': 9, 'duelWon': 6, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 20, 'possessionLostCtrl': 10, 'expectedGoals': 0.4411, 'keyPass': 1, 'passPerc': 0.25, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f20f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 4, 'onTargetScoringAttempt': 1, 'wasFouled': 2, 'minutesPlayed': 77, 'touches': 32, 'possessionLostCtrl': 15, 'expectedGoals': 0.0141, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f21c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'totalLongBalls': 21, 'accurateLongBalls': 13, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 9, 'goalsPrevented': 0.041, 'passPerc': 0.7575757575757576, 'longballsPerc': 0.6190476190476191}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f21d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 24, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 11, 'expectedAssists': 0.00545267, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f21e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 9, 'totalClearance': 6, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 7, 'passPerc': 0.7666666666666667, 'longballsPerc': 0.6}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f220'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 10, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.2}, 'team': 'Real Sociedad', 'name': 'aihen-munoz', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f221'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 15, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 80, 'touches': 51, 'possessionLostCtrl': 19, 'expectedAssists': 0.00859433, 'passPerc': 0.6521739130434783, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f222'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 41, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 21, 'expectedAssists': 0.0137936, 'passPerc': 0.7068965517241379, 'longballsPerc': 0.4}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f224'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 11, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 17, 'expectedAssists': 0.0178391, 'passPerc': 0.782608695652174, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f233'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 15, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 12, 'goalsPrevented': -1.202, 'passPerc': 0.6875, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f234'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 46, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 1, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.101407, 'passPerc': 0.8679245283018868, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f235'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 59, 'totalLongBalls': 19, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 7, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 5, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 21, 'expectedGoals': 0.0641, 'expectedAssists': 0.017372, 'passPerc': 0.7375, 'longballsPerc': 0.15789473684210525}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f236'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 65, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'ownGoals': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 6, 'expectedGoals': 0.0404, 'expectedAssists': 0.0143848, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.75}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f237'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 10, 'expectedAssists': 0.0120755, 'passPerc': 0.925, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f239'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 61, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 83, 'touches': 92, 'possessionLostCtrl': 15, 'expectedGoals': 0.0887, 'keyPass': 1, 'expectedAssists': 0.0266751, 'passPerc': 0.8243243243243243, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f23a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 11, 'dispossessed': 2, 'totalContest': 8, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 6, 'minutesPlayed': 83, 'touches': 50, 'possessionLostCtrl': 20, 'expectedGoals': 0.0559, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'jesus-rodriguez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f23b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 44, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 4, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 13, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalTackle': 5, 'wasFouled': 6, 'fouls': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 19, 'expectedGoals': 0.0131, 'keyPass': 2, 'expectedAssists': 0.263345, 'passPerc': 0.8627450980392157, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'lo-celso-giovani', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f249'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 21, 'totalLongBalls': 25, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 1, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 5, 'punches': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 23, 'goalsPrevented': -0.3327, 'passPerc': 0.4883720930232558, 'longballsPerc': 0.12}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f24a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 25, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 23, 'expectedAssists': 0.0152929, 'passPerc': 0.7352941176470589, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f24b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 39, 'totalLongBalls': 13, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 7, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 16, 'expectedGoals': 0.0768, 'expectedAssists': 0.00681844, 'passPerc': 0.75, 'longballsPerc': 0.38461538461538464}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f24c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 47, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 4, 'passPerc': 0.94, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f24d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 11, 'expectedAssists': 0.0138053, 'passPerc': 0.8444444444444444, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f250'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 23, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 10, 'duelWon': 3, 'challengeLost': 5, 'dispossessed': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 4, 'minutesPlayed': 82, 'touches': 39, 'possessionLostCtrl': 8, 'keyPass': 2, 'expectedAssists': 0.0402004, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.5714285714285714}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f251'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 14, 'expectedGoals': 0.0362, 'expectedAssists': 0.00517191, 'passPerc': 0.72, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f260'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 22, 'totalLongBalls': 17, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 14, 'goalsPrevented': -0.6482, 'passPerc': 0.6111111111111112, 'longballsPerc': 0.17647058823529413}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f262'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 91, 'accuratePass': 68, 'totalLongBalls': 28, 'accurateLongBalls': 11, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 23, 'expectedAssists': 0.0212912, 'passPerc': 0.7472527472527473, 'longballsPerc': 0.39285714285714285}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f263'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 40, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 9, 'interceptionWon': 2, 'totalTackle': 2, 'errorLeadToAGoal': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 7, 'passPerc': 0.851063829787234, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f264'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 34, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 2, 'totalClearance': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 17, 'expectedGoals': 0.0441, 'expectedAssists': 0.00695305, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.4444444444444444}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f265'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 75, 'touches': 49, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0136483, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'inigo-ruiz-de-galarreta', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f268'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 25, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 18, 'expectedGoals': 0.0229, 'keyPass': 2, 'expectedAssists': 0.0548321, 'passPerc': 0.6944444444444444, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'alex-berenguer', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f269'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 6, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 13, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 7, 'wonContest': 4, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 4, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 19, 'expectedGoals': 0.3201, 'keyPass': 2, 'expectedAssists': 0.0565051, 'passPerc': 0.75, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f277'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 38, 'totalLongBalls': 14, 'accurateLongBalls': 5, 'goalAssist': 0, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 9, 'goalsPrevented': 0.0487, 'passPerc': 0.8085106382978723, 'longballsPerc': 0.35714285714285715}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f278'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 46, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 11, 'expectedGoals': 0.0151, 'expectedAssists': 0.0170516, 'passPerc': 0.8846153846153846, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f279'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 71, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 9, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 5, 'passPerc': 0.9466666666666667, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'raul-asencio', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f27a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 69, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 2, 'duelWon': 4, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 3, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 6, 'expectedGoals': 0.0585, 'expectedAssists': 0.00777986, 'passPerc': 0.92, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f27b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 13, 'expectedGoals': 0.1298, 'keyPass': 1, 'expectedAssists': 0.0287453, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'fran-garcia', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f27c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 58, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'onTargetScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 10, 'expectedGoals': 0.0524, 'keyPass': 1, 'expectedAssists': 0.0197363, 'passPerc': 0.8923076923076924, 'longballsPerc': 0.8571428571428571}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f27d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 95, 'accuratePass': 89, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 110, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0214871, 'passPerc': 0.9368421052631579, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'dani-ceballos', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f27f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 25, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 3, 'bigChanceCreated': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 13, 'expectedGoals': 0.625, 'keyPass': 3, 'expectedAssists': 0.0686985, 'passPerc': 0.8064516129032258, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'brahim-diaz', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f281'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 30, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 7, 'duelWon': 4, 'totalContest': 7, 'wonContest': 2, 'bigChanceCreated': 1, 'bigChanceMissed': 3, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'wasFouled': 2, 'fouls': 3, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 16, 'expectedGoals': 1.3928, 'keyPass': 1, 'expectedAssists': 0.312531, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.25}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f28c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 14, 'totalLongBalls': 23, 'accurateLongBalls': 9, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 14, 'goalsPrevented': -0.3863, 'passPerc': 0.5, 'longballsPerc': 0.391304347826087}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f28d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 14, 'expectedGoals': 0.0222, 'keyPass': 1, 'expectedAssists': 0.00977333, 'passPerc': 0.7083333333333334, 'longballsPerc': 0.25}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f28e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 3, 'expectedAssists': 0.00584701, 'passPerc': 0.9130434782608695, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'domingos-duarte', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f28f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 4, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 78, 'touches': 28, 'possessionLostCtrl': 6, 'passPerc': 0.7692307692307693, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'juan-berrocal', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f290'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 24, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 11, 'expectedGoals': 0.0179, 'keyPass': 1, 'expectedAssists': 0.0350243, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f292'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 32, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 2, 'shotOffTarget': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 6, 'expectedGoals': 0.0755, 'keyPass': 1, 'expectedAssists': 0.0705803, 'passPerc': 0.9411764705882353, 'longballsPerc': 0.75}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f293'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 23, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 1, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 11, 'expectedGoals': 0.0943, 'keyPass': 2, 'expectedAssists': 0.0271822, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f296'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 14, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 9, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 34, 'possessionLostCtrl': 16, 'passPerc': 0.2727272727272727, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'alvaro-rodriguez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2a0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 19, 'totalLongBalls': 19, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 3, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 12, 'goalsPrevented': -0.5756, 'passPerc': 0.6129032258064516, 'longballsPerc': 0.3684210526315789}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'totalTackle': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 8, 'passPerc': 0.85, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 46, 'totalLongBalls': 6, 'goalAssist': 0, 'duelWon': 3, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 6, 'passPerc': 0.8846153846153846, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 41, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 7, 'expectedAssists': 0.00506376, 'passPerc': 0.8541666666666666, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0456082, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 41, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 7, 'expectedGoals': 0.2111, 'keyPass': 1, 'expectedAssists': 0.162211, 'passPerc': 0.8913043478260869, 'longballsPerc': 0.75}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 78, 'touches': 42, 'possessionLostCtrl': 6, 'expectedAssists': 0.0112453, 'passPerc': 0.8125, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 23, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 89, 'touches': 44, 'possessionLostCtrl': 10, 'expectedGoals': 0.378, 'keyPass': 2, 'expectedAssists': 0.57235, 'passPerc': 0.8518518518518519, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2a9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 13, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 3, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 12, 'expectedGoals': 0.1649, 'keyPass': 3, 'expectedAssists': 0.0666201, 'passPerc': 0.65, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2b2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 4, 'goalsPrevented': -0.5892, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.2}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2b4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 95, 'accuratePass': 91, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 5, 'expectedAssists': 0.00778834, 'passPerc': 0.9578947368421052, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2b5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 96, 'accuratePass': 91, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 107, 'possessionLostCtrl': 7, 'expectedGoals': 0.017, 'keyPass': 1, 'expectedAssists': 0.0305558, 'passPerc': 0.9479166666666666, 'longballsPerc': 0.2}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2b6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 42, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'aerialLost': 2, 'duelLost': 7, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 16, 'expectedGoals': 0.2583, 'expectedAssists': 0.0127626, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2b8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 82, 'totalLongBalls': 11, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 98, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0852758, 'passPerc': 0.9318181818181818, 'longballsPerc': 0.7272727272727273}, 'team': 'Girona FC', 'name': 'oriol-romeu', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2b9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 54, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 22, 'expectedGoals': 0.0463, 'keyPass': 2, 'expectedAssists': 0.161528, 'passPerc': 0.9310344827586207, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'bryan-gil', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f2c8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 34, 'totalLongBalls': 12, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 11, 'goalsPrevented': 1.0381, 'passPerc': 0.7555555555555555, 'longballsPerc': 0.08333333333333333}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2c9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 39, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 2, 'shotOffTarget': 1, 'totalClearance': 3, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 8, 'expectedGoals': 0.0234, 'expectedAssists': 0.00653152, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2ca'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 57, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 8, 'passPerc': 0.890625, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Valladolid', 'name': 'abdulay-juma-bah', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2cb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 82, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 5, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 100, 'possessionLostCtrl': 7, 'expectedAssists': 0.00846936, 'passPerc': 0.9318181818181818, 'longballsPerc': 0.625}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2cd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 26, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 12, 'passPerc': 0.7428571428571429, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2ce'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 3, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 14, 'totalContest': 6, 'wonContest': 5, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'hitWoodwork': 1, 'totalTackle': 1, 'wasFouled': 7, 'fouls': 3, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 13, 'expectedGoals': 0.029, 'keyPass': 3, 'expectedAssists': 0.19858, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'ivan-sanchez', 'rating': 7.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2d0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'dispossessed': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'minutesPlayed': 85, 'touches': 51, 'possessionLostCtrl': 14, 'expectedGoals': 0.0455, 'keyPass': 1, 'expectedAssists': 0.159122, 'passPerc': 0.84375, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2d3'), 'position': 'M', 'substitute': True, 'statistics': {'totalPass': 36, 'accuratePass': 35, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'minutesPlayed': 78, 'touches': 44, 'possessionLostCtrl': 2, 'expectedGoals': 0.1965, 'expectedAssists': 0.00607333, 'passPerc': 0.9722222222222222, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f2df'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 22, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 1, 'goalsPrevented': 0.1272, 'passPerc': 0.9565217391304348, 'longballsPerc': 0.8}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2e0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 49, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'totalTackle': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 16, 'keyPass': 1, 'expectedAssists': 0.418483, 'passPerc': 0.8166666666666667, 'longballsPerc': 0.25}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2e1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 63, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 7, 'expectedGoals': 0.1382, 'expectedAssists': 0.00501019, 'passPerc': 0.9, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2e2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 62, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 7, 'expectedGoals': 0.9456, 'expectedAssists': 0.00612529, 'passPerc': 0.8985507246376812, 'longballsPerc': 0.4444444444444444}, 'team': 'Atlético Madrid', 'name': 'clement-lenglet', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2e4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 37, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'totalContest': 4, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 13, 'expectedGoals': 0.0241, 'keyPass': 3, 'expectedAssists': 0.388018, 'passPerc': 0.8222222222222222, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'giuliano-simeone', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2e6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 47, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelWon': 3, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'totalTackle': 1, 'minutesPlayed': 79, 'touches': 63, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0363013, 'passPerc': 0.8703703703703703, 'longballsPerc': 0.2}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2e7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 46, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 9, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 10, 'expectedGoals': 0.1076, 'keyPass': 1, 'expectedAssists': 0.16668, 'passPerc': 0.9387755102040817, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'conor-gallagher', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2f4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 10, 'totalLongBalls': 20, 'accurateLongBalls': 6, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 15, 'goalsPrevented': 0.1222, 'passPerc': 0.4166666666666667, 'longballsPerc': 0.3}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2f5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 10, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'totalTackle': 8, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.00614035, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.4}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2f6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'totalClearance': 8, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 9, 'passPerc': 0.6190476190476191, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2f7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 11, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 6, 'expectedGoals': 0.2167, 'keyPass': 2, 'passPerc': 0.6470588235294118, 'longballsPerc': 0.375}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2f8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 8, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 17, 'possessionLostCtrl': 3, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'brian-olivan', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2fa'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 5, 'accuratePass': 5, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 11, 'duelWon': 1, 'dispossessed': 6, 'totalContest': 2, 'bigChanceMissed': 2, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 25, 'possessionLostCtrl': 11, 'expectedGoals': 0.3725, 'expectedAssists': 0.0240827, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 5.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2fc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 8, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 12, 'expectedAssists': 0.0428906, 'passPerc': 0.5, 'longballsPerc': 0.2}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f2fd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 11, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 10, 'keyPass': 2, 'expectedAssists': 0.200279, 'passPerc': 0.8461538461538461, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f30b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 19, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 24, 'goalsPrevented': -1.7667, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f30c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 80, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelWon': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 4, 'expectedGoals': 0.0344, 'expectedAssists': 0.0269236, 'passPerc': 0.9523809523809523, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f30d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 108, 'accuratePass': 102, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 6, 'totalClearance': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 118, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0323549, 'passPerc': 0.9444444444444444, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f30e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 101, 'accuratePass': 95, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'totalContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 111, 'possessionLostCtrl': 7, 'expectedGoals': 0.1092, 'expectedAssists': 0.0277921, 'passPerc': 0.9405940594059405, 'longballsPerc': 0.5714285714285714}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f30f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 39, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 10, 'expectedGoals': 0.021, 'keyPass': 1, 'expectedAssists': 0.0637019, 'passPerc': 0.975, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'jonathan-bamba', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f310'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 55, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 16, 'expectedGoals': 0.1085, 'keyPass': 3, 'expectedAssists': 0.219536, 'passPerc': 0.873015873015873, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f312'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 73, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 10, 'dispossessed': 3, 'totalContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 80, 'touches': 106, 'possessionLostCtrl': 16, 'expectedGoals': 0.0524, 'keyPass': 3, 'expectedAssists': 0.761964, 'passPerc': 0.9012345679012346, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'ilaix-moriba', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f314'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 42, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 18, 'expectedGoals': 1.0788, 'keyPass': 2, 'expectedAssists': 0.104799, 'passPerc': 0.7636363636363637, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f322'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 11, 'totalLongBalls': 13, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 9, 'goalsPrevented': 0.0483, 'passPerc': 0.5789473684210527, 'longballsPerc': 0.38461538461538464}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f323'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 8, 'accuratePass': 5, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'totalContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'lastManTackle': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 77, 'touches': 36, 'possessionLostCtrl': 12, 'expectedGoals': 0.2858, 'keyPass': 3, 'expectedAssists': 0.0881554, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f324'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 37, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0789995, 'passPerc': 0.7708333333333334, 'longballsPerc': 0.25}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f325'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 51, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 9, 'expectedGoals': 0.091, 'expectedAssists': 0.00749609, 'passPerc': 0.8793103448275862, 'longballsPerc': 0.6666666666666666}, 'team': 'Deportivo Alavés', 'name': 'santiago-mourino', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f326'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 36, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 3, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 23, 'expectedAssists': 0.0272079, 'passPerc': 0.782608695652174, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f327'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 38, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 9, 'duelWon': 8, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 12, 'expectedAssists': 0.0427075, 'passPerc': 0.8260869565217391, 'longballsPerc': 0.8333333333333334}, 'team': 'Deportivo Alavés', 'name': 'ander-guevara', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f329'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 77, 'touches': 42, 'possessionLostCtrl': 16, 'expectedGoals': 0.061, 'keyPass': 1, 'expectedAssists': 0.0852057, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'jon-guridi', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f32a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 14, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 16, 'accurateCross': 4, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 24, 'expectedGoals': 0.2704, 'keyPass': 3, 'expectedAssists': 0.343878, 'passPerc': 0.8235294117647058, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f32b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 16, 'expectedGoals': 0.1189, 'keyPass': 1, 'expectedAssists': 0.050102, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'kike-garcia', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f338'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 13, 'totalLongBalls': 29, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'totalClearance': 5, 'goodHighClaim': 4, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'punches': 3, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 22, 'expectedAssists': 0.00562257, 'goalsPrevented': 0.424, 'passPerc': 0.3939393939393939, 'longballsPerc': 0.3103448275862069}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 8.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f339'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 11, 'expectedGoals': 0.0619, 'expectedAssists': 0.00573077, 'passPerc': 0.75, 'longballsPerc': 0.25}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f33a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 11, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 5, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.2}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f33b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 18, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 7, 'totalClearance': 10, 'outfielderBlock': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 4, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f33c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 11, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 6, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f33d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 17, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 5, 'fouls': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 16, 'expectedGoals': 0.1487, 'passPerc': 0.5666666666666667, 'longballsPerc': 0.14285714285714285}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f33e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 10, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 12, 'expectedAssists': 0.0207881, 'passPerc': 0.7575757575757576, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f33f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 14, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 6, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 14, 'challengeLost': 2, 'dispossessed': 4, 'totalContest': 8, 'wonContest': 7, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 3, 'minutesPlayed': 77, 'touches': 51, 'possessionLostCtrl': 18, 'expectedGoals': 0.0138, 'keyPass': 2, 'expectedAssists': 0.755017, 'passPerc': 0.7368421052631579, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'dani-raba', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f340'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 20, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'interceptionWon': 3, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 12, 'expectedGoals': 0.4545, 'keyPass': 2, 'expectedAssists': 0.0821567, 'passPerc': 0.6896551724137931, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'oscar-rodriguez', 'rating': 8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f342'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'bigChanceMissed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 82, 'touches': 24, 'possessionLostCtrl': 9, 'expectedGoals': 0.1872, 'expectedAssists': 0.00605505, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'diego-garcia', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f34f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 25, 'totalLongBalls': 2, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 2, 'goalsPrevented': -1.0943, 'passPerc': 0.9259259259259259, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f351'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 79, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 5, 'duelLost': 1, 'duelWon': 6, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 1, 'minutesPlayed': 89, 'touches': 86, 'expectedGoals': 0.3614, 'keyPass': 1, 'expectedAssists': 0.0287276, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f352'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 110, 'accuratePass': 99, 'totalLongBalls': 12, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 7, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 119, 'possessionLostCtrl': 11, 'expectedGoals': 0.0193, 'keyPass': 1, 'expectedAssists': 0.0853452, 'passPerc': 0.9, 'longballsPerc': 0.5833333333333334}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f355'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 83, 'accuratePass': 74, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 1, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 4, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 13, 'expectedGoals': 0.2494, 'keyPass': 1, 'expectedAssists': 0.17714, 'passPerc': 0.891566265060241, 'longballsPerc': 0.7777777777777778}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f356'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 35, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'goals': 1, 'interceptionWon': 2, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 20, 'expectedGoals': 0.3364, 'keyPass': 5, 'expectedAssists': 0.375935, 'passPerc': 0.7446808510638298, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f359'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 11, 'expectedGoals': 0.5586, 'keyPass': 4, 'expectedAssists': 0.161483, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f366'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 15, 'totalLongBalls': 28, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 7, 'punches': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 24, 'goalsPrevented': 0.2452, 'passPerc': 0.39473684210526316, 'longballsPerc': 0.17857142857142858}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f367'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 83, 'touches': 43, 'possessionLostCtrl': 11, 'expectedAssists': 0.00755864, 'passPerc': 0.8, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'viti-rozada', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f368'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 12, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 6, 'totalClearance': 9, 'outfielderBlock': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 3, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f369'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'bigChanceMissed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 3, 'interceptionWon': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 5, 'expectedGoals': 0.2931, 'passPerc': 0.75, 'longballsPerc': 0.2}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f36a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 11, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 3, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 47, 'possessionLostCtrl': 12, 'expectedAssists': 0.0379685, 'passPerc': 0.5238095238095238, 'longballsPerc': 0.14285714285714285}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f36b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 4, 'goalAssist': 1, 'aerialWon': 2, 'duelWon': 5, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 83, 'touches': 46, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.00622275, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f36e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 4, 'duelLost': 7, 'duelWon': 4, 'totalContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 13, 'expectedGoals': 0.0362, 'keyPass': 2, 'expectedAssists': 0.391538, 'passPerc': 0.6190476190476191, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f36f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 11, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 7, 'duelWon': 9, 'totalContest': 8, 'wonContest': 4, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0162011, 'passPerc': 0.7333333333333333, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f37d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 29, 'totalLongBalls': 19, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 14, 'goalsPrevented': -0.4008, 'passPerc': 0.6744186046511628, 'longballsPerc': 0.2631578947368421}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f37e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 35, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 2, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 78, 'touches': 69, 'possessionLostCtrl': 13, 'expectedAssists': 0.0295778, 'passPerc': 0.813953488372093, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'mateu-morey', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f37f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 50, 'totalLongBalls': 11, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 7, 'expectedAssists': 0.00504101, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.8181818181818182}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f380'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 53, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 4, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 3, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 6, 'expectedGoals': 0.0219, 'expectedAssists': 0.00569919, 'passPerc': 0.9137931034482759, 'longballsPerc': 0.6}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f381'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 17, 'expectedAssists': 0.0148665, 'passPerc': 0.7, 'longballsPerc': 0.14285714285714285}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f382'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 39, 'totalLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 4, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 6, 'expectedGoals': 0.0447, 'expectedAssists': 0.00645294, 'passPerc': 0.8666666666666667, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f383'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 35, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 5, 'duelLost': 2, 'duelWon': 19, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 9, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 21, 'expectedAssists': 0.0264816, 'passPerc': 0.6862745098039216, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f386'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 24, 'totalLongBalls': 2, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'lastManTackle': 1, 'totalTackle': 3, 'wasFouled': 3, 'minutesPlayed': 85, 'touches': 47, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.207676, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f387'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 6, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 2, 'dispossessed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'fouls': 1, 'minutesPlayed': 79, 'touches': 24, 'possessionLostCtrl': 12, 'expectedGoals': 0.2198, 'passPerc': 0.46153846153846156, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'cyle-larin', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f394'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 25, 'totalLongBalls': 12, 'accurateLongBalls': 2, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 10, 'goalsPrevented': -0.4986, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.16666666666666666}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f395'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 14, 'expectedGoals': 0.0148, 'keyPass': 1, 'expectedAssists': 0.0158682, 'passPerc': 0.7575757575757576, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'dimitri-foulquier', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f396'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 56, 'totalLongBalls': 15, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 1, 'totalClearance': 3, 'totalTackle': 2, 'fouls': 5, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 13, 'expectedAssists': 0.0103205, 'passPerc': 0.8115942028985508, 'longballsPerc': 0.4666666666666667}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f397'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 49, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 1, 'passPerc': 0.98, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f398'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 44, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 7, 'totalClearance': 4, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 4, 'minutesPlayed': 84, 'touches': 67, 'possessionLostCtrl': 12, 'passPerc': 0.8, 'longballsPerc': 0.375}, 'team': 'Valencia', 'name': 'gasiorowski-yarek', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f399'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 2, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 18, 'keyPass': 2, 'expectedAssists': 0.146987, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.7142857142857143}, 'team': 'Valencia', 'name': 'jose-luis-gaya', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f39a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'minutesPlayed': 75, 'touches': 32, 'possessionLostCtrl': 12, 'expectedGoals': 0.7884, 'expectedAssists': 0.0083635, 'passPerc': 0.7619047619047619, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f39b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 27, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'shotOffTarget': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 85, 'touches': 51, 'possessionLostCtrl': 13, 'expectedGoals': 0.1245, 'expectedAssists': 0.00619306, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'enzo-barrenechea', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f39c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 75, 'touches': 66, 'possessionLostCtrl': 19, 'keyPass': 2, 'expectedAssists': 0.194747, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'javier-guerra', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f39d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 23, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 13, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 2, 'shotOffTarget': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 19, 'expectedGoals': 0.0411, 'expectedAssists': 0.0338606, 'passPerc': 0.71875, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f39e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 9, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 9, 'expectedAssists': 0.00725915, 'passPerc': 0.6428571428571429, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3aa'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 13, 'totalLongBalls': 25, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 2, 'saves': 1, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 20, 'goalsPrevented': 0.0521, 'passPerc': 0.40625, 'longballsPerc': 0.24}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3ab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 24, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 3, 'dispossessed': 2, 'totalClearance': 3, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 20, 'expectedAssists': 0.0255013, 'passPerc': 0.7058823529411765, 'longballsPerc': 0.75}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3ac'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 33, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 9, 'expectedAssists': 0.0115283, 'passPerc': 0.8048780487804879, 'longballsPerc': 0.5555555555555556}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3ad'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 3, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 9, 'passPerc': 0.7428571428571429, 'longballsPerc': 0.2}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3ae'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 8, 'expectedAssists': 0.00672941, 'passPerc': 0.9230769230769231, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3af'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 27, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 4, 'blockedScoringAttempt': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 77, 'touches': 47, 'possessionLostCtrl': 12, 'expectedGoals': 0.0452, 'keyPass': 2, 'expectedAssists': 0.187827, 'passPerc': 0.7941176470588235, 'longballsPerc': 0.42857142857142855}, 'team': 'Athletic Club', 'name': 'inigo-ruiz-de-galarreta', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3b1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 8, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'totalContest': 3, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 77, 'touches': 34, 'possessionLostCtrl': 17, 'expectedGoals': 0.0297, 'passPerc': 0.5, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3b3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 17, 'goalAssist': 1, 'totalCross': 8, 'accurateCross': 3, 'duelLost': 12, 'duelWon': 8, 'dispossessed': 3, 'totalContest': 14, 'wonContest': 5, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 24, 'expectedGoals': 0.2151, 'keyPass': 4, 'expectedAssists': 1.08297, 'passPerc': 0.8095238095238095, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3c1'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 8, 'goalsPrevented': 0.5478, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.3}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3c2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 20, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 7, 'challengeLost': 4, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 7, 'fouls': 1, 'minutesPlayed': 84, 'touches': 54, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.00836016, 'passPerc': 0.6896551724137931, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3c3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 55, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 3, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 8, 'expectedAssists': 0.0146828, 'passPerc': 0.8870967741935484, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3c4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 93, 'accuratePass': 80, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 10, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 103, 'possessionLostCtrl': 14, 'passPerc': 0.8602150537634409, 'longballsPerc': 0.25}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3c5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 75, 'touches': 60, 'possessionLostCtrl': 9, 'passPerc': 0.925, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3c6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 66, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 6, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 19, 'expectedGoals': 0.412, 'expectedAssists': 0.016735, 'passPerc': 0.825, 'longballsPerc': 0.4}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3c8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 11, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 8, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 13, 'expectedGoals': 0.0253, 'keyPass': 1, 'expectedAssists': 0.11923, 'passPerc': 0.85, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3c9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 22, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 9, 'expectedGoals': 0.0898, 'keyPass': 1, 'expectedAssists': 0.447493, 'passPerc': 0.8148148148148148, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3cb'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 7, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 20, 'possessionLostCtrl': 6, 'expectedGoals': 0.0768, 'passPerc': 0.7, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'mikel-oyarzabal', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3d8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 6, 'totalLongBalls': 17, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 4, 'saves': 5, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 13, 'goalsPrevented': -0.479, 'passPerc': 0.3157894736842105, 'longballsPerc': 0.23529411764705882}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3d9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 30, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 3, 'totalClearance': 8, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 4, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.3333333333333333}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3da'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 16, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'totalClearance': 8, 'outfielderBlock': 2, 'interceptionWon': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 3, 'passPerc': 0.8421052631578947, 'longballsPerc': 0.4}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3db'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 15, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 3, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 12, 'expectedGoals': 0.0247, 'expectedAssists': 0.00514611, 'passPerc': 0.6, 'longballsPerc': 0.25}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3dc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 15, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 5, 'duelWon': 2, 'totalContest': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 75, 'touches': 40, 'possessionLostCtrl': 6, 'expectedAssists': 0.00760901, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'altimira-adria', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3dd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0203418, 'passPerc': 0.85, 'longballsPerc': 0.75}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3df'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 22, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 11, 'expectedGoals': 0.0161, 'expectedAssists': 0.0154339, 'passPerc': 0.8461538461538461, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'juan-cruz', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3e0'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 20, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 3, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 32, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0306985, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'darko-brasanac', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3e2'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 7, 'accuratePass': 6, 'goalAssist': 0, 'aerialLost': 5, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 86, 'touches': 20, 'possessionLostCtrl': 6, 'expectedAssists': 0.00945975, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f3ef'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 1, 'totalContest': 1, 'goodHighClaim': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 4, 'passPerc': 0.9032258064516129, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 62, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'totalContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'interceptionWon': 3, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 7, 'expectedGoals': 0.0137, 'keyPass': 1, 'expectedAssists': 0.195052, 'passPerc': 0.9393939393939394, 'longballsPerc': 0.875}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 8.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 43, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'dispossessed': 1, 'totalClearance': 4, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0376844, 'passPerc': 0.8431372549019608, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'raul-asencio', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 73, 'accuratePass': 64, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 5, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 9, 'expectedGoals': 0.1124, 'keyPass': 1, 'expectedAssists': 0.0367368, 'passPerc': 0.8767123287671232, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 40, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'challengeLost': 1, 'totalClearance': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0154052, 'passPerc': 0.851063829787234, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'fran-garcia', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 38, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 4, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 75, 'touches': 60, 'possessionLostCtrl': 6, 'expectedGoals': 0.3687, 'keyPass': 2, 'expectedAssists': 0.185369, 'passPerc': 0.926829268292683, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'arda-guler', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 65, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0816989, 'passPerc': 0.9027777777777778, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'camavinga-eduardo', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 89, 'accuratePass': 85, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 8, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 6, 'expectedAssists': 0.0401159, 'passPerc': 0.9550561797752809, 'longballsPerc': 0.8571428571428571}, 'team': 'Real Madrid', 'name': 'dani-ceballos', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 56, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 87, 'touches': 82, 'possessionLostCtrl': 16, 'expectedGoals': 0.3362, 'keyPass': 1, 'expectedAssists': 0.0843453, 'passPerc': 0.8615384615384616, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 24, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 4, 'duelLost': 7, 'duelWon': 10, 'dispossessed': 4, 'totalContest': 8, 'wonContest': 5, 'bigChanceCreated': 3, 'shotOffTarget': 1, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 25, 'expectedGoals': 0.0501, 'keyPass': 5, 'expectedAssists': 0.712727, 'passPerc': 0.7741935483870968, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f3f9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 35, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 2, 'duelWon': 5, 'totalContest': 3, 'wonContest': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 2, 'goals': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 83, 'touches': 61, 'possessionLostCtrl': 13, 'expectedGoals': 0.8977, 'expectedAssists': 0.0459796, 'passPerc': 0.8536585365853658, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f402'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 2, 'wasFouled': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 5, 'goalsPrevented': 0.0551, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.5454545454545454}, 'team': 'Sevilla', 'name': 'alvaro-fernandez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f403'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 15, 'expectedGoals': 0.0545, 'keyPass': 1, 'expectedAssists': 0.0344998, 'passPerc': 0.72, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f404'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 48, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 7, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 8, 'expectedAssists': 0.0081578, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.5454545454545454}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f405'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 51, 'totalLongBalls': 8, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'totalClearance': 6, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 10, 'expectedAssists': 0.0113039, 'passPerc': 0.8360655737704918, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f406'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 81, 'touches': 59, 'possessionLostCtrl': 15, 'expectedAssists': 0.0149143, 'passPerc': 0.8125, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f407'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 13, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 19, 'expectedGoals': 0.0365, 'keyPass': 1, 'expectedAssists': 0.069508, 'passPerc': 0.75, 'longballsPerc': 0.25}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f408'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 52, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 7, 'expectedGoals': 0.0951, 'keyPass': 1, 'expectedAssists': 0.0274806, 'passPerc': 0.9122807017543859, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'albert-sambi-lokonga', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f40a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 22, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 80, 'touches': 37, 'possessionLostCtrl': 5, 'expectedGoals': 0.3193, 'keyPass': 1, 'expectedAssists': 0.0482379, 'passPerc': 0.88, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'djibril-sow', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f40c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 15, 'goalAssist': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 14, 'expectedGoals': 0.4412, 'keyPass': 1, 'expectedAssists': 0.102074, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f418'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 25, 'totalLongBalls': 23, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 16, 'expectedAssists': 0.00624823, 'goalsPrevented': 0.0646, 'passPerc': 0.6097560975609756, 'longballsPerc': 0.30434782608695654}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f419'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 29, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 12, 'expectedAssists': 0.0149459, 'passPerc': 0.8787878787878788, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f41a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 42, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 86, 'touches': 60, 'possessionLostCtrl': 10, 'expectedGoals': 0.0154, 'keyPass': 1, 'expectedAssists': 0.0118283, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.4444444444444444}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f41b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 51, 'totalLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 15, 'expectedAssists': 0.0111094, 'passPerc': 0.8095238095238095, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f41c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 35, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 11, 'expectedAssists': 0.0106487, 'passPerc': 0.813953488372093, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f420'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 14, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'bigChanceCreated': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 86, 'touches': 24, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.223642, 'passPerc': 0.8235294117647058, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f422'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 12, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'hitWoodwork': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 7, 'expectedGoals': 0.2672, 'keyPass': 1, 'expectedAssists': 0.0705627, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f42f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 24, 'totalLongBalls': 19, 'accurateLongBalls': 11, 'goalAssist': 0, 'totalClearance': 3, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 8, 'goalsPrevented': 0.5223, 'passPerc': 0.75, 'longballsPerc': 0.5789473684210527}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 8.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f430'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 2, 'totalClearance': 3, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0650638, 'passPerc': 0.6956521739130435, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f431'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 28, 'totalLongBalls': 12, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 13, 'passPerc': 0.7, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f432'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 7, 'outfielderBlock': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 7, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f433'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 23, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 9, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'juan-cruz', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f435'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 39, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 11, 'duelWon': 10, 'challengeLost': 3, 'totalContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 4, 'penaltyConceded': 1, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 12, 'expectedAssists': 0.0118617, 'passPerc': 0.7959183673469388, 'longballsPerc': 0.6666666666666666}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f436'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 87, 'touches': 47, 'possessionLostCtrl': 16, 'expectedAssists': 0.104005, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f438'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 5, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 8, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 2, 'goals': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 87, 'touches': 25, 'possessionLostCtrl': 12, 'expectedGoals': 0.9188, 'expectedAssists': 0.0120142, 'passPerc': 0.4166666666666667, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 8.7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f439'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 10, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 7, 'totalContest': 7, 'wonContest': 3, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 78, 'touches': 35, 'possessionLostCtrl': 16, 'expectedAssists': 0.00894574, 'passPerc': 0.5263157894736842, 'longballsPerc': 0.8}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f446'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 15, 'totalLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 6, 'goalsPrevented': -0.0038, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f447'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 44, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 12, 'expectedAssists': 0.0110611, 'passPerc': 0.9166666666666666, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'pau-navarro', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f448'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 48, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 4, 'totalClearance': 1, 'penaltyConceded': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 10, 'expectedAssists': 0.0072109, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f449'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 43, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'totalContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 1, 'penaltyWon': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 4, 'expectedGoals': 0.0756, 'expectedAssists': 0.0985798, 'passPerc': 0.9347826086956522, 'longballsPerc': 0.8333333333333334}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f44a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 77, 'touches': 59, 'possessionLostCtrl': 8, 'expectedGoals': 0.0422, 'keyPass': 1, 'expectedAssists': 0.331816, 'passPerc': 0.84375, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f44b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 30, 'goalAssist': 1, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 86, 'touches': 59, 'possessionLostCtrl': 18, 'expectedGoals': 0.0445, 'keyPass': 3, 'expectedAssists': 0.0748337, 'passPerc': 0.7692307692307693, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'yeremy-pino', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f44c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 61, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 17, 'expectedGoals': 0.0691, 'keyPass': 1, 'expectedAssists': 0.0961885, 'passPerc': 0.8243243243243243, 'longballsPerc': 0.625}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f44e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 33, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 11, 'accurateCross': 6, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 27, 'expectedGoals': 0.5518, 'keyPass': 4, 'expectedAssists': 0.502194, 'passPerc': 0.66, 'longballsPerc': 0.5555555555555556}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 8.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f44f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 10, 'duelWon': 10, 'dispossessed': 5, 'totalContest': 5, 'wonContest': 2, 'bigChanceMissed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 3, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 25, 'expectedGoals': 0.4815, 'expectedAssists': 0.0959886, 'passPerc': 0.6190476190476191, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'thierno-barry', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f459'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 20, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'saves': 2, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 9, 'goalsPrevented': -0.9863, 'passPerc': 0.6896551724137931, 'longballsPerc': 0.2727272727272727}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f45a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 28, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 4, 'interceptionWon': 3, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.0509407, 'passPerc': 0.6829268292682927, 'longballsPerc': 0.2222222222222222}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f45b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 37, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 3, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 7, 'expectedAssists': 0.010305, 'passPerc': 0.8409090909090909, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f45c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 43, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 8, 'expectedGoals': 0.0814, 'expectedAssists': 0.0140099, 'passPerc': 0.8775510204081632, 'longballsPerc': 0.2}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f45d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 42, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 15, 'expectedGoals': 0.0238, 'keyPass': 3, 'expectedAssists': 0.537045, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.75}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f45e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 19, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 17, 'expectedGoals': 0.5749, 'expectedAssists': 0.243334, 'passPerc': 0.7307692307692307, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f45f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 2, 'bigChanceCreated': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 75, 'touches': 37, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.00986148, 'passPerc': 0.7, 'longballsPerc': 0.75}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f460'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 14, 'expectedGoals': 0.009, 'keyPass': 1, 'expectedAssists': 0.11962, 'passPerc': 0.7666666666666667, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'ilaix-moriba', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f462'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 19, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 6, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 45, 'possessionLostCtrl': 16, 'expectedGoals': 0.4229, 'keyPass': 1, 'expectedAssists': 0.250412, 'passPerc': 0.6129032258064516, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f463'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 8, 'accuratePass': 8, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 15, 'possessionLostCtrl': 4, 'keyPass': 2, 'expectedAssists': 0.0656438, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'douvikas-anastasios', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f470'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 33, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 4, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'punches': 1, 'totalKeeperSweeper': 6, 'accurateKeeperSweeper': 6, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 7, 'goalsPrevented': 0.6476, 'passPerc': 0.825, 'longballsPerc': 0.36363636363636365}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 8.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f471'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'errorLeadToAGoal': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0342138, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f472'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 63, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 6, 'expectedAssists': 0.00557313, 'passPerc': 0.9130434782608695, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f473'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 66, 'totalLongBalls': 16, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 4, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 14, 'expectedAssists': 0.00667861, 'passPerc': 0.8354430379746836, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f475'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 39, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.043432, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.6666666666666666}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f476'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 65, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 82, 'touches': 89, 'possessionLostCtrl': 13, 'expectedGoals': 0.0274, 'expectedAssists': 0.0322457, 'passPerc': 0.9154929577464789, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f477'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 24, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'totalContest': 3, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'goals': 1, 'outfielderBlock': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 16, 'expectedGoals': 0.9756, 'expectedAssists': 0.0738468, 'passPerc': 0.7272727272727273, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f478'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 46, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 75, 'touches': 70, 'possessionLostCtrl': 14, 'expectedAssists': 0.101683, 'passPerc': 0.8518518518518519, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'gavi', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f479'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 41, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 65, 'possessionLostCtrl': 18, 'expectedGoals': 0.0281, 'keyPass': 1, 'expectedAssists': 0.0635438, 'passPerc': 0.7884615384615384, 'longballsPerc': 0.8333333333333334}, 'team': 'Barcelona', 'name': 'dani-olmo', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f47a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 30, 'possessionLostCtrl': 10, 'expectedGoals': 0.3788, 'keyPass': 3, 'expectedAssists': 0.0265304, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876b83201ea30d32f487'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 36, 'totalLongBalls': 16, 'accurateLongBalls': 5, 'goalAssist': 0, 'goodHighClaim': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 11, 'goalsPrevented': -0.8318, 'passPerc': 0.7659574468085106, 'longballsPerc': 0.3125}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f488'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 70, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 9, 'expectedAssists': 0.0391265, 'passPerc': 0.9210526315789473, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f489'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 107, 'accuratePass': 99, 'totalLongBalls': 10, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 118, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.00918615, 'passPerc': 0.9252336448598131, 'longballsPerc': 0.7}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f48a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 111, 'accuratePass': 101, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 1, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 116, 'possessionLostCtrl': 10, 'expectedGoals': 0.7423, 'expectedAssists': 0.0287839, 'passPerc': 0.9099099099099099, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f48b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 95, 'accuratePass': 88, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 118, 'possessionLostCtrl': 10, 'expectedAssists': 0.0968455, 'passPerc': 0.9263157894736842, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f48c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 71, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'lastManTackle': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 7, 'expectedAssists': 0.02266, 'passPerc': 0.9466666666666667, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'oriol-romeu', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f48d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 64, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 82, 'touches': 85, 'possessionLostCtrl': 11, 'expectedGoals': 0.0371, 'expectedAssists': 0.0795123, 'passPerc': 0.927536231884058, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876b83201ea30d32f49e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'totalLongBalls': 15, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 9, 'goalsPrevented': -0.7187, 'passPerc': 0.6, 'longballsPerc': 0.4666666666666667}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f49f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 14, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 81, 'touches': 29, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0943594, 'passPerc': 0.9333333333333333, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'alvaro-tejero', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f4a0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 6, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 9, 'expectedAssists': 0.0161495, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.3333333333333333}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f4a2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 9, 'expectedAssists': 0.00576031, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f4a4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 9, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 15, 'expectedGoals': 0.035, 'keyPass': 2, 'expectedAssists': 0.0746607, 'passPerc': 0.6, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f4a6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 9, 'expectedAssists': 0.0436384, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876b83201ea30d32f4a7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 6, 'expectedGoals': 0.0259, 'expectedAssists': 0.0259686, 'passPerc': 0.85, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4b5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'goodHighClaim': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 8, 'goalsPrevented': -1.4227, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.25}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4b6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 50, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalClearance': 2, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.073901, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.6}, 'team': 'Las Palmas', 'name': 'viti-rozada', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4b7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 38, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 1, 'totalClearance': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 10, 'expectedAssists': 0.00550895, 'passPerc': 0.7916666666666666, 'longballsPerc': 0.14285714285714285}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4b8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 44, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 10, 'expectedGoals': 0.0795, 'expectedAssists': 0.00545612, 'passPerc': 0.8301886792452831, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4ba'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 7, 'expectedGoals': 0.0411, 'keyPass': 2, 'expectedAssists': 0.0358231, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.6}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4bc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'duelLost': 2, 'duelWon': 1, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 88, 'touches': 39, 'possessionLostCtrl': 14, 'expectedGoals': 0.0528, 'expectedAssists': 0.0186594, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'sandro-ramirez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4bd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 76, 'touches': 52, 'possessionLostCtrl': 9, 'expectedGoals': 0.0243, 'keyPass': 1, 'expectedAssists': 0.109543, 'passPerc': 0.8809523809523809, 'longballsPerc': 0.75}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4bf'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 17, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 7, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 8, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'goals': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 13, 'expectedGoals': 0.8842, 'expectedAssists': 0.032856, 'passPerc': 0.6538461538461539, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'fabio-silva', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4cc'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 15, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 6, 'goalsPrevented': -0.9794, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.6}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4cd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 2, 'interceptionWon': 4, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 6, 'minutesPlayed': 85, 'touches': 57, 'possessionLostCtrl': 14, 'expectedAssists': 0.00999898, 'passPerc': 0.8275862068965517, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'mateu-morey', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4ce'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 27, 'totalLongBalls': 8, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'totalClearance': 6, 'outfielderBlock': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 11, 'passPerc': 0.7105263157894737, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4d0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 16, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 4, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 22, 'expectedGoals': 0.2719, 'keyPass': 1, 'expectedAssists': 0.0356188, 'passPerc': 0.6153846153846154, 'longballsPerc': 0.25}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4d1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 3, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'minutesPlayed': 76, 'touches': 33, 'possessionLostCtrl': 12, 'expectedGoals': 0.2844, 'expectedAssists': 0.0157882, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'robert-navarro', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4d2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 4, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 7, 'expectedGoals': 0.0302, 'keyPass': 1, 'expectedAssists': 0.0185374, 'passPerc': 0.9117647058823529, 'longballsPerc': 0.75}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4d3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 25, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.389475, 'passPerc': 0.7352941176470589, 'longballsPerc': 0.4444444444444444}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4d4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 3, 'duelLost': 5, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 85, 'touches': 34, 'possessionLostCtrl': 8, 'expectedGoals': 0.0349, 'keyPass': 2, 'expectedAssists': 0.175782, 'passPerc': 0.7619047619047619, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4d6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 10, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 6, 'duelLost': 3, 'duelWon': 7, 'shotOffTarget': 2, 'totalClearance': 2, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 88, 'touches': 25, 'possessionLostCtrl': 10, 'expectedGoals': 0.4138, 'keyPass': 1, 'expectedAssists': 0.0242864, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4e2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'minutesPlayed': 90, 'touches': 20, 'possessionLostCtrl': 3, 'goalsPrevented': -0.3294, 'passPerc': 0.8125, 'longballsPerc': 0.4}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4e3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 62, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 98, 'possessionLostCtrl': 13, 'expectedAssists': 0.0198203, 'passPerc': 0.9253731343283582, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'cesar-azpilicueta', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4e4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 75, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 5, 'keyPass': 1, 'expectedAssists': 0.0154401, 'passPerc': 0.9493670886075949, 'longballsPerc': 0.7142857142857143}, 'team': 'Atlético Madrid', 'name': 'axel-witsel', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4e5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 60, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 6, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 7, 'interceptionWon': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 7, 'expectedGoals': 0.2817, 'expectedAssists': 0.0133492, 'passPerc': 0.8955223880597015, 'longballsPerc': 0.5714285714285714}, 'team': 'Atlético Madrid', 'name': 'clement-lenglet', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4e8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 49, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'totalTackle': 1, 'errorLeadToAShot': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 22, 'keyPass': 1, 'expectedAssists': 0.0578828, 'passPerc': 0.8032786885245902, 'longballsPerc': 0.42857142857142855}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4ec'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 32, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 2, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 23, 'expectedGoals': 0.8249, 'keyPass': 4, 'expectedAssists': 0.253507, 'passPerc': 0.7111111111111111, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f4f7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 18, 'totalLongBalls': 25, 'accurateLongBalls': 11, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 6, 'punches': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 14, 'goalsPrevented': 0.3226, 'passPerc': 0.5625, 'longballsPerc': 0.44}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 7.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4f8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 4, 'passPerc': 0.9444444444444444, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4f9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 19, 'totalLongBalls': 10, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 9, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 7, 'totalTackle': 4, 'penaltyConceded': 1, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 13, 'expectedAssists': 0.010137, 'passPerc': 0.6129032258064516, 'longballsPerc': 0.1}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4fa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'interceptionWon': 4, 'minutesPlayed': 85, 'touches': 32, 'possessionLostCtrl': 6, 'expectedGoals': 0.0061, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'santiago-mourino', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4fb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 10, 'totalLongBalls': 4, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 2, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 88, 'touches': 40, 'possessionLostCtrl': 9, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4fc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 7, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 12, 'passPerc': 0.7, 'longballsPerc': 0.75}, 'team': 'Deportivo Alavés', 'name': 'ander-guevara', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4fd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 2, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 5, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 6, 'passPerc': 0.8214285714285714, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f4fe'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 14, 'expectedAssists': 0.0897483, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f500'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 10, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 85, 'touches': 37, 'possessionLostCtrl': 12, 'expectedGoals': 0.0455, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'carlos-martin', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f50e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 15, 'totalLongBalls': 27, 'accurateLongBalls': 10, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'totalKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 17, 'expectedAssists': 0.00508061, 'goalsPrevented': -1.337, 'passPerc': 0.46875, 'longballsPerc': 0.37037037037037035}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.2, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f50f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 14, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 2, 'totalClearance': 3, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 14, 'expectedAssists': 0.0078475, 'passPerc': 0.7368421052631579, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'dimitri-foulquier', 'rating': 6.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f510'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 29, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 9, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 10, 'expectedGoals': 0.382, 'passPerc': 0.7435897435897436, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f511'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 47, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 1, 'passPerc': 0.9791666666666666, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f512'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 35, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 8, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 9, 'expectedAssists': 0.0111564, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.6666666666666666}, 'team': 'Valencia', 'name': 'gasiorowski-yarek', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f513'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 14, 'keyPass': 2, 'expectedAssists': 0.216802, 'passPerc': 0.8055555555555556, 'longballsPerc': 0.6}, 'team': 'Valencia', 'name': 'jose-luis-gaya', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f514'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 2, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'minutesPlayed': 89, 'touches': 48, 'possessionLostCtrl': 14, 'expectedGoals': 0.0212, 'keyPass': 3, 'expectedAssists': 0.360159, 'passPerc': 0.8235294117647058, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f516'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 8, 'wasFouled': 1, 'minutesPlayed': 82, 'touches': 66, 'possessionLostCtrl': 16, 'expectedGoals': 0.0155, 'keyPass': 1, 'expectedAssists': 0.186123, 'passPerc': 0.7619047619047619, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'javier-guerra', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f525'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0056616, 'goalsPrevented': -1.5198, 'passPerc': 0.7666666666666667, 'longballsPerc': 0.4166666666666667}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f526'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 48, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0339913, 'passPerc': 0.9056603773584906, 'longballsPerc': 0.75}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f527'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 48, 'totalLongBalls': 16, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 6, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 15, 'expectedGoals': 0.1078, 'expectedAssists': 0.0419053, 'passPerc': 0.8135593220338984, 'longballsPerc': 0.5625}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f528'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 44, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 7, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 11, 'expectedAssists': 0.0328855, 'passPerc': 0.8301886792452831, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'natan', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f529'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 36, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 13, 'expectedAssists': 0.00929568, 'passPerc': 0.8372093023255814, 'longballsPerc': 0.25}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f52a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 59, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.326487, 'passPerc': 0.9516129032258065, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f52f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 8, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 81, 'touches': 24, 'possessionLostCtrl': 14, 'expectedAssists': 0.0144585, 'passPerc': 0.5714285714285714, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'vitor-roque', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f53a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 10, 'totalLongBalls': 22, 'accurateLongBalls': 9, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 13, 'goalsPrevented': 0.774, 'passPerc': 0.43478260869565216, 'longballsPerc': 0.4090909090909091}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f53b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 89, 'touches': 60, 'possessionLostCtrl': 13, 'expectedGoals': 0.2822, 'keyPass': 2, 'expectedAssists': 0.105206, 'passPerc': 0.8620689655172413, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'allan-nyom', 'rating': 8.3, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f53c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 4, 'totalClearance': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 5, 'expectedAssists': 0.0136712, 'passPerc': 0.9, 'longballsPerc': 0.8333333333333334}, 'team': 'Getafe', 'name': 'djene', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f53d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 28, 'totalLongBalls': 12, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 1, 'duelWon': 6, 'totalClearance': 4, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 12, 'expectedAssists': 0.103076, 'passPerc': 0.717948717948718, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f53e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 29, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'duelWon': 4, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 16, 'keyPass': 2, 'expectedAssists': 0.502255, 'passPerc': 0.7435897435897436, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f540'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 27, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 12, 'expectedAssists': 0.0074203, 'passPerc': 0.7714285714285715, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f541'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 47, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 21, 'expectedGoals': 0.0655, 'keyPass': 2, 'expectedAssists': 0.132735, 'passPerc': 0.8867924528301887, 'longballsPerc': 0.6666666666666666}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f542'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 15, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 27, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.149001, 'passPerc': 0.8823529411764706, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'carles-perez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f544'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 11, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 9, 'aerialWon': 5, 'duelLost': 16, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 3, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 12, 'expectedGoals': 0.0912, 'keyPass': 1, 'expectedAssists': 0.0204787, 'passPerc': 0.7857142857142857, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f54e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 16, 'totalLongBalls': 28, 'accurateLongBalls': 11, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 3, 'wasFouled': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 17, 'goalsPrevented': -1.2067, 'passPerc': 0.48484848484848486, 'longballsPerc': 0.39285714285714285}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f54f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 2, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 12, 'expectedGoals': 0.0451, 'expectedAssists': 0.0533783, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f550'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 13, 'totalLongBalls': 5, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 7, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 14, 'expectedAssists': 0.00670159, 'passPerc': 0.5652173913043478, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'abdulay-juma-bah', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f552'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 20, 'totalLongBalls': 9, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 5, 'shotOffTarget': 1, 'totalClearance': 11, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 16, 'expectedGoals': 0.0536, 'passPerc': 0.5714285714285714, 'longballsPerc': 0.1111111111111111}, 'team': 'Real Valladolid', 'name': 'cenk-ozkacar', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f553'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 11, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 9, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 23, 'keyPass': 1, 'expectedAssists': 0.0624016, 'passPerc': 0.4782608695652174, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f554'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 11, 'expectedGoals': 0.048, 'keyPass': 2, 'expectedAssists': 0.770139, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f556'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 26, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 11, 'challengeLost': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 5, 'wasFouled': 5, 'fouls': 6, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 15, 'expectedGoals': 0.0352, 'keyPass': 1, 'expectedAssists': 0.0650809, 'passPerc': 0.7428571428571429, 'longballsPerc': 0.4444444444444444}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f558'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 7, 'accuratePass': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 8, 'aerialWon': 4, 'duelLost': 10, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'minutesPlayed': 85, 'touches': 18, 'possessionLostCtrl': 8, 'expectedGoals': 0.4377, 'expectedAssists': 0.00818512, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'mamadou-sylla', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f565'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 33, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'goodHighClaim': 4, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 5, 'goalsPrevented': 0.461, 'passPerc': 0.8918918918918919, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f566'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 41, 'totalLongBalls': 17, 'accurateLongBalls': 14, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 11, 'expectedAssists': 0.0260737, 'passPerc': 0.8367346938775511, 'longballsPerc': 0.8235294117647058}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f567'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 55, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 4, 'duelLost': 1, 'duelWon': 8, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 8, 'passPerc': 0.873015873015873, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f568'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 45, 'totalLongBalls': 12, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 16, 'expectedAssists': 0.0106869, 'passPerc': 0.75, 'longballsPerc': 0.3333333333333333}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f569'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 82, 'touches': 45, 'possessionLostCtrl': 12, 'expectedGoals': 0.0165, 'keyPass': 2, 'expectedAssists': 0.15876, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'brian-olivan', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f56c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 20, 'keyPass': 2, 'expectedAssists': 0.1244, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f56d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'blockedScoringAttempt': 3, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 17, 'expectedGoals': 0.1385, 'expectedAssists': 0.085765, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f56f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 12, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 3, 'totalContest': 3, 'wonContest': 2, 'bigChanceMissed': 3, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'hitWoodwork': 1, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 17, 'expectedGoals': 1.7444, 'expectedAssists': 0.0369945, 'passPerc': 0.5714285714285714, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f57c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 8, 'totalLongBalls': 25, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 22, 'goalsPrevented': 0.3071, 'passPerc': 0.26666666666666666, 'longballsPerc': 0.12}, 'team': 'Valencia', 'name': 'stole-dimitrievski', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f57d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 34, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 16, 'expectedAssists': 0.0124354, 'passPerc': 0.7906976744186046, 'longballsPerc': 0.2}, 'team': 'Valencia', 'name': 'dimitri-foulquier', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f57f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 52, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 1, 'expectedAssists': 0.00535749, 'passPerc': 0.9811320754716981, 'longballsPerc': 0.8}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f580'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 35, 'totalLongBalls': 10, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'dispossessed': 1, 'totalClearance': 5, 'interceptionWon': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 20, 'keyPass': 2, 'expectedAssists': 0.0761069, 'passPerc': 0.7608695652173914, 'longballsPerc': 0.2}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f581'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 59, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 85, 'touches': 67, 'possessionLostCtrl': 4, 'keyPass': 3, 'expectedAssists': 0.0510198, 'passPerc': 0.9516129032258065, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'enzo-barrenechea', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f584'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 39, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 7, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 11, 'expectedGoals': 0.0363, 'expectedAssists': 0.0300235, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'andre-almeida', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f585'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'hitWoodwork': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 85, 'touches': 44, 'possessionLostCtrl': 14, 'expectedGoals': 0.7942, 'keyPass': 2, 'expectedAssists': 0.142069, 'passPerc': 0.7407407407407407, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f586'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 15, 'goalAssist': 0, 'aerialLost': 8, 'aerialWon': 2, 'duelLost': 13, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 3, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 11, 'expectedGoals': 0.8598, 'keyPass': 1, 'expectedAssists': 0.0403639, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'dani-gomez', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f593'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 16, 'totalLongBalls': 21, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 2, 'saves': 1, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 14, 'goalsPrevented': -0.2857, 'passPerc': 0.5333333333333333, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f595'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 3, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 6, 'expectedGoals': 0.053, 'passPerc': 0.76, 'longballsPerc': 0.25}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f596'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 19, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'bigChanceCreated': 1, 'totalClearance': 7, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0137511, 'passPerc': 0.8636363636363636, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f597'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 11, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 3, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 84, 'touches': 36, 'possessionLostCtrl': 14, 'passPerc': 0.4782608695652174, 'longballsPerc': 0.2}, 'team': 'Real Sociedad', 'name': 'aihen-munoz', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f598'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 17, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 2, 'totalClearance': 4, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 10, 'expectedAssists': 0.00934841, 'passPerc': 0.8095238095238095, 'longballsPerc': 0.6}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f599'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 13, 'expectedGoals': 0.0894, 'keyPass': 3, 'expectedAssists': 0.0629579, 'passPerc': 0.7272727272727273, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f59a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 23, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'duelLost': 7, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 4, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 15, 'expectedGoals': 0.2382, 'keyPass': 3, 'expectedAssists': 0.0309313, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5aa'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 59, 'totalLongBalls': 12, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 3, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'punches': 1, 'totalKeeperSweeper': 4, 'accurateKeeperSweeper': 4, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 8, 'goalsPrevented': 0.3438, 'passPerc': 0.8805970149253731, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5ab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 20, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 84, 'touches': 57, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.014806, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5ac'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 78, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 6, 'duelLost': 3, 'duelWon': 8, 'shotOffTarget': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'lastManTackle': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 94, 'possessionLostCtrl': 7, 'expectedGoals': 0.2313, 'keyPass': 1, 'expectedAssists': 0.00725152, 'passPerc': 0.9176470588235294, 'longballsPerc': 0.5714285714285714}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5ad'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 109, 'accuratePass': 93, 'totalLongBalls': 10, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 119, 'possessionLostCtrl': 18, 'expectedGoals': 0.0481, 'keyPass': 1, 'expectedAssists': 0.170171, 'passPerc': 0.8532110091743119, 'longballsPerc': 0.2}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5ae'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 50, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 4, 'duelWon': 10, 'challengeLost': 1, 'totalContest': 8, 'wonContest': 5, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.0210857, 'passPerc': 0.8928571428571429, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5af'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 60, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'duelLost': 2, 'duelWon': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 14, 'expectedGoals': 0.0387, 'expectedAssists': 0.0308308, 'passPerc': 0.8571428571428571, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5b2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 46, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'wasFouled': 4, 'minutesPlayed': 89, 'touches': 76, 'possessionLostCtrl': 17, 'expectedGoals': 0.0381, 'keyPass': 2, 'expectedAssists': 0.605657, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.42857142857142855}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5b3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 22, 'expectedGoals': 0.0203, 'keyPass': 2, 'expectedAssists': 0.275713, 'passPerc': 0.6756756756756757, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5b4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 8, 'expectedAssists': 0.0760061, 'passPerc': 0.8125, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5bf'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 11, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'saves': 1, 'minutesPlayed': 90, 'touches': 22, 'possessionLostCtrl': 9, 'goalsPrevented': -0.6441, 'passPerc': 0.55, 'longballsPerc': 0.25}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5c0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 23, 'expectedGoals': 0.0169, 'expectedAssists': 0.0271917, 'passPerc': 0.8125, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5c1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 51, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'totalClearance': 2, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 9, 'expectedAssists': 0.00799998, 'passPerc': 0.85, 'longballsPerc': 0.2222222222222222}, 'team': 'Getafe', 'name': 'domingos-duarte', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5c2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 45, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 4, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 13, 'expectedGoals': 0.0445, 'expectedAssists': 0.0180558, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.6666666666666666}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5c3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 35, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 18, 'expectedGoals': 0.0055, 'keyPass': 1, 'expectedAssists': 0.157093, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5c5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 39, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0333818, 'passPerc': 0.9069767441860465, 'longballsPerc': 0.6666666666666666}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5c7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 38, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 11, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 21, 'expectedGoals': 0.0239, 'keyPass': 2, 'expectedAssists': 0.0335446, 'passPerc': 0.8260869565217391, 'longballsPerc': 0.8}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5c9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 12, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 4, 'wasFouled': 1, 'fouls': 4, 'totalOffside': 1, 'minutesPlayed': 85, 'touches': 36, 'possessionLostCtrl': 16, 'expectedAssists': 0.0280405, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f5d3'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 25, 'totalLongBalls': 21, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 18, 'passPerc': 0.5813953488372093, 'longballsPerc': 0.14285714285714285}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5d4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 8, 'expectedAssists': 0.0202577, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5d5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 64, 'totalLongBalls': 13, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'dispossessed': 1, 'totalClearance': 12, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0218701, 'passPerc': 0.8421052631578947, 'longballsPerc': 0.46153846153846156}, 'team': 'Girona FC', 'name': 'juanpe', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5d6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 73, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 7, 'expectedAssists': 0.00588919, 'passPerc': 0.9240506329113924, 'longballsPerc': 0.4444444444444444}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5d7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 51, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 15, 'expectedAssists': 0.0157517, 'passPerc': 0.796875, 'longballsPerc': 0.2727272727272727}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5d9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 47, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 8, 'expectedAssists': 0.00879627, 'passPerc': 0.8703703703703703, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'oriol-romeu', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5da'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 27, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 89, 'touches': 51, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.237324, 'passPerc': 0.9, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'bryan-gil', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5dc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 11, 'expectedAssists': 0.03221, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f5e7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 34, 'totalLongBalls': 24, 'accurateLongBalls': 11, 'goalAssist': 0, 'totalClearance': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 14, 'expectedAssists': 0.00621569, 'goalsPrevented': -0.1456, 'passPerc': 0.723404255319149, 'longballsPerc': 0.4583333333333333}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5e8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0841618, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5e9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 22, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 8, 'outfielderBlock': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 9, 'expectedGoals': 0.0334, 'passPerc': 0.7096774193548387, 'longballsPerc': 0.25}, 'team': 'Real Valladolid', 'name': 'abdulay-juma-bah', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5ea'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 27, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 2, 'duelWon': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 5, 'passPerc': 0.8709677419354839, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'javi-sanchez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5eb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 10, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'david-torres', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5ec'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 12, 'totalLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 14, 'expectedGoals': 0.1755, 'expectedAssists': 0.00732075, 'passPerc': 0.5217391304347826, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5ed'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 8, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 26, 'possessionLostCtrl': 9, 'expectedGoals': 0.3063, 'keyPass': 1, 'expectedAssists': 0.12188, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5ee'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 89, 'touches': 27, 'possessionLostCtrl': 5, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5ef'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 76, 'touches': 44, 'possessionLostCtrl': 12, 'expectedGoals': 0.0282, 'keyPass': 2, 'expectedAssists': 0.129213, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5fe'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 6, 'goalsPrevented': 0.1402, 'passPerc': 0.7916666666666666, 'longballsPerc': 0.5454545454545454}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f5ff'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 53, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 3, 'aerialLost': 3, 'duelLost': 5, 'dispossessed': 2, 'bigChanceCreated': 1, 'totalClearance': 2, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 14, 'keyPass': 3, 'expectedAssists': 0.494962, 'passPerc': 0.8688524590163934, 'longballsPerc': 0.75}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f600'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 54, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 4, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 11, 'expectedGoals': 0.0131, 'keyPass': 1, 'expectedAssists': 0.0116033, 'passPerc': 0.84375, 'longballsPerc': 0.2857142857142857}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f601'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 77, 'totalLongBalls': 13, 'accurateLongBalls': 10, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 3, 'totalClearance': 4, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 4, 'expectedAssists': 0.0189519, 'passPerc': 0.9506172839506173, 'longballsPerc': 0.7692307692307693}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f602'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 41, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 5, 'totalContest': 3, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 8, 'expectedGoals': 0.0467, 'expectedAssists': 0.0167191, 'passPerc': 0.9534883720930233, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'adama-boiro', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f605'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 2, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 7, 'wonContest': 3, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'wasFouled': 2, 'minutesPlayed': 80, 'touches': 44, 'possessionLostCtrl': 14, 'expectedGoals': 0.0611, 'expectedAssists': 0.0158525, 'passPerc': 0.782608695652174, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-serrano', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f607'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'goalAssist': 0, 'totalCross': 11, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 8, 'wonContest': 4, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 26, 'expectedGoals': 0.3991, 'keyPass': 1, 'expectedAssists': 0.141087, 'passPerc': 0.8285714285714286, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f615'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 20, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 3, 'goalsPrevented': -0.0478, 'passPerc': 0.8695652173913043, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f616'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 26, 'totalLongBalls': 6, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'errorLeadToAGoal': 1, 'wasFouled': 2, 'minutesPlayed': 75, 'touches': 57, 'possessionLostCtrl': 17, 'keyPass': 1, 'expectedAssists': 0.0510176, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f617'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 72, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 3, 'expectedGoals': 0.0117, 'expectedAssists': 0.0203997, 'passPerc': 0.96, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f618'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 78, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 4, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.100549, 'passPerc': 0.9176470588235294, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f619'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 40, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 14, 'expectedAssists': 0.0212403, 'passPerc': 0.9090909090909091, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f61a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 25, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 75, 'touches': 43, 'possessionLostCtrl': 9, 'expectedGoals': 0.0499, 'expectedAssists': 0.0163797, 'passPerc': 0.8928571428571429, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'robert-navarro', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f61b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 58, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 6, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 83, 'touches': 74, 'possessionLostCtrl': 2, 'keyPass': 1, 'expectedAssists': 0.123155, 'passPerc': 0.9830508474576272, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f61c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 71, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 8, 'expectedGoals': 0.0272, 'keyPass': 2, 'expectedAssists': 0.122777, 'passPerc': 0.8987341772151899, 'longballsPerc': 0.75}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f61f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 12, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 10, 'duelLost': 6, 'duelWon': 14, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 4, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 9, 'expectedGoals': 0.2355, 'expectedAssists': 0.0616017, 'passPerc': 0.7058823529411765, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f62b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 3, 'goalsPrevented': 0.2178, 'passPerc': 0.75, 'longballsPerc': 0.25}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f62c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 46, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 20, 'expectedAssists': 0.0119291, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'nahuel-molina', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f62d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 41, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'totalClearance': 4, 'outfielderBlock': 2, 'interceptionWon': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 2, 'expectedAssists': 0.00515928, 'passPerc': 0.9761904761904762, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f62f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 51, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 11, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 4, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 9, 'expectedAssists': 0.00648927, 'passPerc': 0.8793103448275862, 'longballsPerc': 0.14285714285714285}, 'team': 'Atlético Madrid', 'name': 'reinildo-mandava', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f631'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 40, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 4, 'keyPass': 2, 'expectedAssists': 0.0612762, 'passPerc': 0.9302325581395349, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f632'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 59, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.176117, 'passPerc': 0.9076923076923077, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f633'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 30, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 8, 'duelWon': 8, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 86, 'touches': 52, 'possessionLostCtrl': 9, 'expectedGoals': 0.1504, 'keyPass': 2, 'expectedAssists': 0.0434899, 'passPerc': 0.9375, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'rodrigo-riquelme', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f640'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 7, 'goalsPrevented': -0.7751, 'passPerc': 0.75, 'longballsPerc': 0.16666666666666666}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f641'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 54, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0584175, 'passPerc': 0.8709677419354839, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f643'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 63, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 2, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'interceptionWon': 4, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 11, 'expectedGoals': 0.0293, 'expectedAssists': 0.00604413, 'passPerc': 0.9, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Betis', 'name': 'natan', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f644'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 42, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 16, 'expectedGoals': 0.0348, 'expectedAssists': 0.0134553, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.2}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f645'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 35, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 5, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 75, 'touches': 52, 'possessionLostCtrl': 9, 'expectedGoals': 0.0655, 'keyPass': 2, 'expectedAssists': 0.225189, 'passPerc': 0.8536585365853658, 'longballsPerc': 0.8}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f646'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 87, 'accuratePass': 79, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 4, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 12, 'expectedGoals': 0.0988, 'keyPass': 2, 'expectedAssists': 0.0429328, 'passPerc': 0.9080459770114943, 'longballsPerc': 0.7142857142857143}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f648'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 27, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 7, 'wonContest': 5, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'totalTackle': 1, 'minutesPlayed': 86, 'touches': 55, 'possessionLostCtrl': 16, 'expectedGoals': 0.26, 'keyPass': 5, 'expectedAssists': 0.186397, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f649'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'interceptionWon': 2, 'minutesPlayed': 86, 'touches': 45, 'possessionLostCtrl': 9, 'expectedGoals': 0.11, 'keyPass': 2, 'expectedAssists': 0.0548563, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'iker-losada', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f64a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 9, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 9, 'duelWon': 6, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 7, 'expectedGoals': 0.6789, 'expectedAssists': 0.00841457, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'vitor-roque', 'rating': 8, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f657'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 12, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'totalClearance': 2, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 2, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 6, 'goalsPrevented': -0.0734, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.5833333333333334}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f658'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 39, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 12, 'expectedGoals': 0.0902, 'expectedAssists': 0.0281449, 'passPerc': 0.78, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f659'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 53, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 7, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 1, 'passPerc': 0.9814814814814815, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f65a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 58, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 3, 'totalClearance': 9, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 11, 'expectedAssists': 0.00548717, 'passPerc': 0.8529411764705882, 'longballsPerc': 0.5714285714285714}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f65d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 34, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'interceptionWon': 1, 'totalTackle': 4, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 5, 'expectedAssists': 0.0072906, 'passPerc': 0.918918918918919, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f65f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 11, 'duelWon': 6, 'dispossessed': 3, 'totalContest': 5, 'wonContest': 1, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 18, 'keyPass': 1, 'expectedAssists': 0.530662, 'passPerc': 0.8275862068965517, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'jonathan-bamba', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f660'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 20, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'shotOffTarget': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 79, 'touches': 40, 'possessionLostCtrl': 11, 'expectedGoals': 0.2189, 'expectedAssists': 0.023535, 'passPerc': 0.6666666666666666, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f66e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 17, 'totalLongBalls': 30, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 2, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 26, 'goalsPrevented': 0.0782, 'passPerc': 0.3953488372093023, 'longballsPerc': 0.13333333333333333}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f66f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 8, 'expectedAssists': 0.00951409, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.5714285714285714}, 'team': 'Leganés', 'name': 'altimira-adria', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f670'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 39, 'totalLongBalls': 15, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'totalClearance': 9, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 14, 'expectedAssists': 0.0271258, 'passPerc': 0.7358490566037735, 'longballsPerc': 0.26666666666666666}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f671'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 41, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 14, 'passPerc': 0.7454545454545455, 'longballsPerc': 0.16666666666666666}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f673'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 28, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 76, 'touches': 47, 'possessionLostCtrl': 12, 'expectedAssists': 0.00853884, 'passPerc': 0.7368421052631579, 'longballsPerc': 0.3333333333333333}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f674'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 29, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 9, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 3, 'penaltyWon': 1, 'minutesPlayed': 89, 'touches': 49, 'possessionLostCtrl': 10, 'expectedAssists': 0.0137143, 'passPerc': 0.7631578947368421, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f675'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 7, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 1, 'minutesPlayed': 76, 'touches': 27, 'possessionLostCtrl': 14, 'expectedGoals': 0.0205, 'keyPass': 2, 'expectedAssists': 0.15235, 'passPerc': 0.4666666666666667, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'juan-cruz', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f676'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 30, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 8, 'expectedGoals': 0.0208, 'keyPass': 1, 'expectedAssists': 0.0136132, 'passPerc': 0.8108108108108109, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'darko-brasanac', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f677'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 8, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 6, 'duelLost': 13, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 4, 'wasFouled': 6, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 16, 'expectedGoals': 0.0739, 'passPerc': 0.47058823529411764, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'munir-el-haddadi', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f678'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 2, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 5, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 3, 'goals': 1, 'outfielderBlock': 1, 'minutesPlayed': 90, 'touches': 20, 'possessionLostCtrl': 10, 'expectedGoals': 0.8982, 'passPerc': 0.2222222222222222, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f684'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 27, 'totalLongBalls': 20, 'accurateLongBalls': 8, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 12, 'goalsPrevented': 0.2407, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.4}, 'team': 'Sevilla', 'name': 'alvaro-fernandez', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f685'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 38, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'totalClearance': 1, 'interceptionWon': 6, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 88, 'touches': 79, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.0502417, 'passPerc': 0.7450980392156863, 'longballsPerc': 0.4}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f686'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 51, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 20, 'passPerc': 0.796875, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f687'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 43, 'totalLongBalls': 10, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 3, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 20, 'expectedGoals': 0.0466, 'expectedAssists': 0.00857149, 'passPerc': 0.7049180327868853, 'longballsPerc': 0.2}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f688'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 13, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f689'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 40, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 5, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'minutesPlayed': 88, 'touches': 53, 'possessionLostCtrl': 9, 'expectedGoals': 0.0183, 'keyPass': 2, 'expectedAssists': 0.0321895, 'passPerc': 0.851063829787234, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'djibril-sow', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f68a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 6, 'duelWon': 10, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 2, 'interceptionWon': 3, 'totalTackle': 4, 'penaltyConceded': 1, 'fouls': 2, 'minutesPlayed': 81, 'touches': 57, 'possessionLostCtrl': 16, 'keyPass': 1, 'expectedAssists': 0.00644486, 'passPerc': 0.6739130434782609, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'lucien-agoume', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f68b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 54, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 4, 'dispossessed': 4, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 15, 'expectedGoals': 0.1447, 'keyPass': 2, 'expectedAssists': 0.153305, 'passPerc': 0.8852459016393442, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'albert-sambi-lokonga', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f68c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 4, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 9, 'expectedGoals': 0.2298, 'keyPass': 3, 'expectedAssists': 0.20076, 'passPerc': 0.84375, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f68d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 12, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 12, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 4, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 27, 'expectedGoals': 0.079, 'keyPass': 1, 'passPerc': 0.48, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f69a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 33, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 6, 'goalsPrevented': 0.5602, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.4444444444444444}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f69c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 66, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 12, 'expectedAssists': 0.00880093, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.375}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f69d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 62, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 5, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 9, 'expectedAssists': 0.0114066, 'passPerc': 0.8732394366197183, 'longballsPerc': 0.75}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f69e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 13, 'expectedGoals': 0.0939, 'keyPass': 1, 'expectedAssists': 0.0470123, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6a1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 61, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 4, 'expectedGoals': 0.7884, 'keyPass': 1, 'expectedAssists': 0.0423686, 'passPerc': 0.9384615384615385, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6a2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 13, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 22, 'expectedGoals': 0.0613, 'keyPass': 2, 'expectedAssists': 0.0895982, 'passPerc': 0.5, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6a4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 14, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 85, 'touches': 30, 'possessionLostCtrl': 8, 'expectedGoals': 0.0347, 'expectedAssists': 0.0253839, 'passPerc': 0.9333333333333333, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'ayoze-perez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6ae'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 11, 'totalLongBalls': 22, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'totalTackle': 1, 'goodHighClaim': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 17, 'goalsPrevented': -1.1922, 'passPerc': 0.4230769230769231, 'longballsPerc': 0.3181818181818182}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6af'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 13, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 19, 'expectedGoals': 0.0154, 'passPerc': 0.5909090909090909, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6b0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 27, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 4, 'outfielderBlock': 3, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 3, 'expectedAssists': 0.0152036, 'passPerc': 0.9642857142857143, 'longballsPerc': 0.8333333333333334}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6b1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 24, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 8, 'expectedGoals': 0.0751, 'passPerc': 0.75, 'longballsPerc': 0.375}, 'team': 'Deportivo Alavés', 'name': 'adrian-hernandez-pica', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6b2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 19, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 14, 'expectedGoals': 0.0424, 'expectedAssists': 0.0230476, 'passPerc': 0.7037037037037037, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6b4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 10, 'expectedGoals': 0.0159, 'keyPass': 1, 'expectedAssists': 0.0525075, 'passPerc': 0.7878787878787878, 'longballsPerc': 0.8333333333333334}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6b5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 2, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 27, 'possessionLostCtrl': 9, 'expectedGoals': 0.0279, 'keyPass': 2, 'expectedAssists': 0.0506664, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.6666666666666666}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6b8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 10, 'totalContest': 4, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 76, 'touches': 27, 'possessionLostCtrl': 6, 'expectedGoals': 0.1126, 'keyPass': 1, 'expectedAssists': 0.0317896, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'kike-garcia', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6c5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 28, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 1, 'bigChanceCreated': 1, 'goodHighClaim': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 2, 'keyPass': 1, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.6}, 'team': 'Real Madrid', 'name': 'andriy-lunin', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6c8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 96, 'accuratePass': 90, 'totalLongBalls': 14, 'accurateLongBalls': 10, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0255489, 'passPerc': 0.9375, 'longballsPerc': 0.7142857142857143}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6c9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 56, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 9, 'expectedGoals': 0.0673, 'expectedAssists': 0.0170518, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'fran-garcia', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6ca'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 51, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 7, 'expectedGoals': 0.1416, 'keyPass': 1, 'expectedAssists': 0.0219914, 'passPerc': 0.9272727272727272, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6cb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 46, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 10, 'expectedGoals': 0.0568, 'expectedAssists': 0.0151812, 'passPerc': 0.8679245283018868, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'camavinga-eduardo', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6cc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 44, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 64, 'possessionLostCtrl': 10, 'expectedGoals': 0.4598, 'keyPass': 1, 'expectedAssists': 0.0190618, 'passPerc': 0.9361702127659575, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6ce'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 35, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 9, 'wonContest': 6, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 3, 'wasFouled': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 9, 'expectedGoals': 0.282, 'keyPass': 2, 'expectedAssists': 0.127902, 'passPerc': 0.9210526315789473, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6cf'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 12, 'dispossessed': 1, 'totalContest': 12, 'wonContest': 7, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 4, 'blockedScoringAttempt': 1, 'goals': 3, 'totalTackle': 1, 'wasFouled': 4, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 71, 'possessionLostCtrl': 19, 'expectedGoals': 2.0233, 'keyPass': 2, 'expectedAssists': 0.242853, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 10, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f6da'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 16, 'totalLongBalls': 21, 'accurateLongBalls': 8, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 13, 'goalsPrevented': -0.5187, 'passPerc': 0.5517241379310345, 'longballsPerc': 0.38095238095238093}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6db'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'lastManTackle': 1, 'totalTackle': 5, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 14, 'expectedAssists': 0.0126524, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6dc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 25, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 9, 'passPerc': 0.7352941176470589, 'longballsPerc': 0.45454545454545453}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6dd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 34, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 3, 'passPerc': 0.9444444444444444, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 5.6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6de'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 24, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 12, 'expectedGoals': 0.0099, 'expectedAssists': 0.00726619, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6df'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 14, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 4, 'dispossessed': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 81, 'touches': 24, 'possessionLostCtrl': 7, 'expectedAssists': 0.0118727, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6e0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 4, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 6, 'expectedAssists': 0.0051637, 'passPerc': 0.875, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6e4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 5, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 8, 'duelWon': 1, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 1, 'minutesPlayed': 82, 'touches': 23, 'possessionLostCtrl': 16, 'expectedAssists': 0.0367434, 'passPerc': 0.35714285714285715, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6f1'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 6, 'goalsPrevented': -1.9809, 'passPerc': 0.75, 'longballsPerc': 0.4}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6f2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 49, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 7, 'wonContest': 5, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 23, 'expectedGoals': 0.1151, 'expectedAssists': 0.043973, 'passPerc': 0.8909090909090909, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6f4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 70, 'totalLongBalls': 14, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 7, 'duelLost': 6, 'duelWon': 9, 'challengeLost': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 3, 'hitWoodwork': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 11, 'expectedGoals': 0.1115, 'keyPass': 2, 'expectedAssists': 0.0799403, 'passPerc': 0.8641975308641975, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6f5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 2, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 77, 'touches': 65, 'possessionLostCtrl': 15, 'expectedGoals': 0.4127, 'keyPass': 1, 'expectedAssists': 0.0921813, 'passPerc': 0.8, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6f6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'goalAssist': 0, 'totalCross': 11, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 3, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 22, 'expectedGoals': 0.1041, 'keyPass': 2, 'expectedAssists': 0.200872, 'passPerc': 0.7575757575757576, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6f7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 37, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 9, 'expectedGoals': 0.2579, 'expectedAssists': 0.0257716, 'passPerc': 0.8409090909090909, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6f9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 32, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'totalContest': 1, 'shotOffTarget': 3, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 18, 'expectedGoals': 0.28, 'keyPass': 4, 'expectedAssists': 0.121095, 'passPerc': 0.7441860465116279, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f6fa'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'wasFouled': 1, 'minutesPlayed': 77, 'touches': 36, 'possessionLostCtrl': 11, 'expectedGoals': 0.1163, 'keyPass': 3, 'expectedAssists': 0.249733, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'isi-palazon', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876c83201ea30d32f708'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 20, 'totalLongBalls': 25, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 5, 'saves': 6, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 20, 'goalsPrevented': 0.1445, 'passPerc': 0.5128205128205128, 'longballsPerc': 0.24}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f709'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 4, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 10, 'expectedAssists': 0.0063435, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.6}, 'team': 'Las Palmas', 'name': 'viti-rozada', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f70a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 14, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 9, 'outfielderBlock': 3, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 10, 'passPerc': 0.5833333333333334, 'longballsPerc': 0.125}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f70b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 16, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'totalClearance': 7, 'outfielderBlock': 2, 'ownGoals': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 18, 'expectedGoals': 0.2515, 'keyPass': 1, 'expectedAssists': 0.00578308, 'passPerc': 0.5161290322580645, 'longballsPerc': 0.2222222222222222}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f70c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 14, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 10, 'challengeLost': 2, 'totalClearance': 8, 'outfielderBlock': 3, 'interceptionWon': 2, 'totalTackle': 7, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 11, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alex-munoz', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f70d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 8, 'expectedGoals': 0.0468, 'expectedAssists': 0.054166, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f70e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 52, 'possessionLostCtrl': 9, 'keyPass': 2, 'expectedAssists': 0.0592618, 'passPerc': 0.8157894736842105, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f70f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'errorLeadToAShot': 2, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 79, 'touches': 52, 'possessionLostCtrl': 13, 'expectedGoals': 0.0296, 'expectedAssists': 0.00849999, 'passPerc': 0.7, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f711'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 8, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 12, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 3, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 79, 'touches': 36, 'possessionLostCtrl': 17, 'expectedGoals': 0.1519, 'passPerc': 0.5714285714285714, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'fabio-silva', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876c83201ea30d32f71f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 14, 'totalLongBalls': 17, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 13, 'goalsPrevented': 0.0091000000000001, 'passPerc': 0.5185185185185185, 'longballsPerc': 0.23529411764705882}, 'team': 'Villarreal', 'name': 'luiz-junior', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f722'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 1, 'totalClearance': 6, 'outfielderBlock': 2, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 7, 'expectedAssists': 0.0159006, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.5714285714285714}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f723'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'totalClearance': 5, 'clearanceOffLine': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 13, 'keyPass': 3, 'expectedAssists': 0.0832913, 'passPerc': 0.8125, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 8.2, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f725'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 32, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 11, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 5, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 20, 'expectedGoals': 0.1109, 'expectedAssists': 0.0111436, 'passPerc': 0.7111111111111111, 'longballsPerc': 0.4}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f726'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 42, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 16, 'expectedGoals': 0.0587, 'keyPass': 1, 'expectedAssists': 0.0276229, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f729'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'duelLost': 11, 'duelWon': 10, 'dispossessed': 3, 'totalContest': 7, 'wonContest': 3, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 3, 'wasFouled': 4, 'minutesPlayed': 83, 'touches': 48, 'possessionLostCtrl': 18, 'expectedGoals': 0.5997, 'keyPass': 1, 'expectedAssists': 0.0155207, 'passPerc': 0.6842105263157895, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'ayoze-perez', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f734'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 6, 'goalsPrevented': 1.2908, 'passPerc': 0.782608695652174, 'longballsPerc': 0.5454545454545454}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f736'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 42, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'shotOffTarget': 2, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 8, 'expectedGoals': 0.0833, 'keyPass': 1, 'expectedAssists': 0.199659, 'passPerc': 0.84, 'longballsPerc': 0.2222222222222222}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f737'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 30, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 7, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 5, 'expectedGoals': 0.0241, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.6}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f738'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 37, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 84, 'touches': 85, 'possessionLostCtrl': 14, 'expectedGoals': 0.1681, 'expectedAssists': 0.0309741, 'passPerc': 0.7872340425531915, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'alfonso-espino', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f739'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 36, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 11, 'duelWon': 7, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 11, 'expectedGoals': 0.0905, 'expectedAssists': 0.0310612, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f73b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'totalContest': 3, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 16, 'expectedGoals': 0.5371, 'keyPass': 1, 'expectedAssists': 0.116906, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876c83201ea30d32f73d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 25, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 1, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 18, 'expectedGoals': 0.3293, 'expectedAssists': 0.122684, 'passPerc': 0.6578947368421053, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f74b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 5, 'goalsPrevented': 0.3055, 'passPerc': 0.7916666666666666, 'longballsPerc': 0.375}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f74d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 56, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 5, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 1, 'totalClearance': 5, 'outfielderBlock': 4, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 7, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f74e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 89, 'accuratePass': 77, 'totalLongBalls': 13, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 7, 'duelLost': 5, 'duelWon': 12, 'totalContest': 1, 'totalClearance': 8, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 109, 'possessionLostCtrl': 15, 'expectedAssists': 0.0193855, 'passPerc': 0.8651685393258427, 'longballsPerc': 0.46153846153846156}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f74f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 46, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 14, 'expectedGoals': 0.0457, 'keyPass': 1, 'expectedAssists': 0.228638, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.7777777777777778}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f750'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 68, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 12, 'duelWon': 3, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 1, 'totalTackle': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 11, 'expectedAssists': 0.059899, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.75}, 'team': 'Celta Vigo', 'name': 'hugo-sotelo', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f751'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 33, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 3, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'totalTackle': 2, 'minutesPlayed': 75, 'touches': 53, 'possessionLostCtrl': 9, 'expectedGoals': 0.0917, 'expectedAssists': 0.00981475, 'passPerc': 0.8461538461538461, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f753'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 21, 'expectedGoals': 0.0876, 'keyPass': 4, 'expectedAssists': 0.811801, 'passPerc': 0.6875, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 8.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f755'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 3, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 57, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.118181, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.3333333333333333}, 'team': 'Celta Vigo', 'name': 'jonathan-bamba', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f762'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 28, 'totalLongBalls': 24, 'accurateLongBalls': 14, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 10, 'goalsPrevented': 0.6013, 'passPerc': 0.7368421052631579, 'longballsPerc': 0.5833333333333334}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f763'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 35, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0581486, 'passPerc': 0.813953488372093, 'longballsPerc': 0.375}, 'team': 'Getafe', 'name': 'allan-nyom', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f765'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 48, 'totalLongBalls': 15, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 19, 'passPerc': 0.8, 'longballsPerc': 0.4666666666666667}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f766'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 27, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 3, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 17, 'keyPass': 3, 'expectedAssists': 0.170263, 'passPerc': 0.7105263157894737, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f768'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 3, 'totalContest': 6, 'wonContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 14, 'expectedGoals': 0.081, 'keyPass': 1, 'expectedAssists': 0.0568473, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.5555555555555556}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f769'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 25, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 12, 'expectedGoals': 0.0906, 'keyPass': 1, 'expectedAssists': 0.11009, 'passPerc': 0.8064516129032258, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'carles-perez', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f76a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0166897, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f777'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 13, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 8, 'goalsPrevented': 0.2702, 'passPerc': 0.72, 'longballsPerc': 0.46153846153846156}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f778'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 36, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 2, 'bigChanceCreated': 1, 'totalClearance': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 79, 'touches': 64, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.111006, 'passPerc': 0.8571428571428571, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f779'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 67, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 10, 'expectedGoals': 0.0631, 'expectedAssists': 0.0110844, 'passPerc': 0.9054054054054054, 'longballsPerc': 0.7142857142857143}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f77a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 59, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'shotOffTarget': 1, 'hitWoodwork': 1, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 6, 'expectedGoals': 0.1654, 'expectedAssists': 0.00619113, 'passPerc': 0.9076923076923077, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f77b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 46, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 9, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 13, 'expectedAssists': 0.00857324, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f77d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 35, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 7, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 79, 'touches': 55, 'possessionLostCtrl': 5, 'expectedGoals': 0.1299, 'keyPass': 1, 'expectedAssists': 0.00879086, 'passPerc': 0.9210526315789473, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'benat-prados', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f77e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 9, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 4, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 14, 'expectedGoals': 0.5755, 'keyPass': 4, 'expectedAssists': 1.21178, 'passPerc': 0.8275862068965517, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 8.7, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f780'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 13, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 4, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalTackle': 5, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 20, 'expectedGoals': 0.0392, 'keyPass': 2, 'expectedAssists': 0.257492, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f78e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 37, 'totalLongBalls': 18, 'accurateLongBalls': 8, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 7, 'saves': 7, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 11, 'goalsPrevented': 2.3779, 'passPerc': 0.7708333333333334, 'longballsPerc': 0.4444444444444444}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 8.4, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f790'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 58, 'totalLongBalls': 13, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 5, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 4, 'interceptionWon': 2, 'minutesPlayed': 89, 'touches': 81, 'possessionLostCtrl': 15, 'expectedAssists': 0.00682413, 'passPerc': 0.8285714285714286, 'longballsPerc': 0.3076923076923077}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f791'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 78, 'totalLongBalls': 12, 'accurateLongBalls': 10, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 7, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 7, 'expectedAssists': 0.00672589, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.8333333333333334}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f792'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 7, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 3, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 16, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 6, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f793'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 38, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 2, 'dispossessed': 3, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 11, 'expectedGoals': 0.1504, 'keyPass': 1, 'expectedAssists': 0.0882068, 'passPerc': 0.8837209302325582, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f795'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 9, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 6, 'expectedAssists': 0.0228682, 'passPerc': 0.9, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'johnny', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f796'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 24, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 21, 'expectedGoals': 0.0321, 'expectedAssists': 0.00853912, 'passPerc': 0.6857142857142857, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f7a3'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 26, 'totalLongBalls': 28, 'accurateLongBalls': 9, 'goalAssist': 0, 'saves': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 20, 'keyPass': 1, 'goalsPrevented': -0.8507, 'passPerc': 0.5652173913043478, 'longballsPerc': 0.32142857142857145}, 'team': 'Sevilla', 'name': 'alvaro-fernandez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7a4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 46, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 4, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 16, 'expectedGoals': 0.0211, 'expectedAssists': 0.0354253, 'passPerc': 0.7931034482758621, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7a6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 55, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 17, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.25}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7a7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 38, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 2, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.0875756, 'passPerc': 0.76, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7a8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 30, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 14, 'expectedAssists': 0.0181855, 'passPerc': 0.8108108108108109, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7a9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 57, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 5, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 80, 'touches': 69, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0285103, 'passPerc': 0.9193548387096774, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'albert-sambi-lokonga', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7aa'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 6, 'dispossessed': 3, 'totalContest': 7, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 21, 'expectedGoals': 0.1657, 'expectedAssists': 0.0430815, 'passPerc': 0.8214285714285714, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7ad'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 11, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 80, 'touches': 29, 'possessionLostCtrl': 10, 'expectedGoals': 0.0995, 'keyPass': 1, 'expectedAssists': 0.0104641, 'passPerc': 0.6875, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7ba'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 21, 'totalLongBalls': 14, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'totalClearance': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 12, 'passPerc': 0.6363636363636364, 'longballsPerc': 0.21428571428571427}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7bb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 9, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 5, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 18, 'expectedAssists': 0.00603879, 'passPerc': 0.7560975609756098, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7bc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 48, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 14, 'passPerc': 0.7741935483870968, 'longballsPerc': 0.25}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7bd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 53, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 11, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 9, 'expectedGoals': 0.0721, 'expectedAssists': 0.0071798, 'passPerc': 0.8688524590163934, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7be'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 41, 'possessionLostCtrl': 8, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7bf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 42, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 8, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 4, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 9, 'expectedGoals': 0.0962, 'keyPass': 1, 'expectedAssists': 0.0121902, 'passPerc': 0.84, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7c0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 80, 'touches': 49, 'possessionLostCtrl': 16, 'expectedGoals': 0.2318, 'keyPass': 3, 'expectedAssists': 0.11418, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7c1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 1, 'dispossessed': 2, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 80, 'touches': 38, 'possessionLostCtrl': 9, 'expectedGoals': 0.0402, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7c2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 11, 'expectedGoals': 0.0231, 'keyPass': 1, 'passPerc': 0.7878787878787878, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7c3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 29, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 2, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 89, 'touches': 56, 'possessionLostCtrl': 13, 'expectedGoals': 0.0077, 'keyPass': 2, 'expectedAssists': 0.408623, 'passPerc': 0.90625, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7c4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'minutesPlayed': 80, 'touches': 19, 'possessionLostCtrl': 9, 'expectedGoals': 0.8996, 'passPerc': 0.5454545454545454, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'mikel-oyarzabal', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7d1'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 25, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 1, 'goalsPrevented': -0.2691, 'passPerc': 0.9615384615384616, 'longballsPerc': 0.6666666666666666}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7d2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 47, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 78, 'touches': 68, 'possessionLostCtrl': 7, 'expectedGoals': 0.0506, 'keyPass': 2, 'expectedAssists': 0.555475, 'passPerc': 0.9038461538461539, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'fort-hector', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7d3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 117, 'accuratePass': 115, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'minutesPlayed': 90, 'touches': 122, 'possessionLostCtrl': 2, 'expectedAssists': 0.0197214, 'passPerc': 0.9829059829059829, 'longballsPerc': 0.6666666666666666}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7d4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 130, 'accuratePass': 123, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 7, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 1, 'errorLeadToAShot': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 145, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0518198, 'passPerc': 0.9461538461538461, 'longballsPerc': 0.8333333333333334}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7d5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 44, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'totalContest': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0431407, 'passPerc': 0.9166666666666666, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7d7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 98, 'accuratePass': 89, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 85, 'touches': 109, 'possessionLostCtrl': 12, 'expectedAssists': 0.085439, 'passPerc': 0.9081632653061225, 'longballsPerc': 0.6}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7d8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 35, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'duelLost': 10, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 10, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 22, 'expectedGoals': 0.1254, 'keyPass': 2, 'expectedAssists': 0.371951, 'passPerc': 0.7954545454545454, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7da'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 85, 'touches': 69, 'possessionLostCtrl': 22, 'expectedGoals': 0.5476, 'keyPass': 3, 'expectedAssists': 0.160777, 'passPerc': 0.8157894736842105, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7db'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 22, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 2, 'dispossessed': 4, 'onTargetScoringAttempt': 2, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 10, 'expectedGoals': 0.1317, 'keyPass': 1, 'expectedAssists': 0.0552758, 'passPerc': 0.88, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7e7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 8, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 3, 'saves': 6, 'punches': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 9, 'goalsPrevented': 0.2308, 'passPerc': 0.47058823529411764, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7e8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 6, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 5, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 38, 'possessionLostCtrl': 11, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.4}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7ea'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 17, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 4, 'totalClearance': 5, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.107891, 'passPerc': 0.6538461538461539, 'longballsPerc': 0.4166666666666667}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7eb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 8, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'lastManTackle': 1, 'totalTackle': 6, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 31, 'possessionLostCtrl': 10, 'keyPass': 2, 'expectedAssists': 0.152334, 'passPerc': 0.8, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7ed'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 14, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'shotOffTarget': 1, 'interceptionWon': 2, 'errorLeadToAGoal': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 16, 'expectedGoals': 0.0683, 'keyPass': 3, 'expectedAssists': 0.117288, 'passPerc': 0.6086956521739131, 'longballsPerc': 0.2}, 'team': 'Espanyol', 'name': 'alvaro-tejero', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7ee'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 7, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 11, 'keyPass': 1, 'passPerc': 0.75, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7f0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 9, 'expectedGoals': 0.0717, 'keyPass': 1, 'expectedAssists': 0.0111848, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7f1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 7, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'totalContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'goals': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 7, 'expectedGoals': 0.5922, 'passPerc': 0.7777777777777778, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f7fe'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 20, 'possessionLostCtrl': 3, 'goalsPrevented': 0.1581, 'passPerc': 0.75, 'longballsPerc': 0.25}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f7ff'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 50, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 22, 'keyPass': 2, 'expectedAssists': 0.324332, 'passPerc': 0.819672131147541, 'longballsPerc': 0.16666666666666666}, 'team': 'Atlético Madrid', 'name': 'nahuel-molina', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f800'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 42, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 2, 'totalClearance': 1, 'interceptionWon': 3, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 2, 'passPerc': 0.9767441860465116, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f801'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 54, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 6, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 10, 'expectedGoals': 0.0697, 'expectedAssists': 0.0190366, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.625}, 'team': 'Atlético Madrid', 'name': 'clement-lenglet', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f802'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 25, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 12, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 5, 'wonContest': 1, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 84, 'touches': 62, 'possessionLostCtrl': 16, 'keyPass': 1, 'expectedAssists': 0.0855428, 'passPerc': 0.8064516129032258, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'javi-galan', 'rating': 6.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f803'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 29, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 5, 'totalContest': 4, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 84, 'touches': 58, 'possessionLostCtrl': 19, 'expectedGoals': 0.2403, 'keyPass': 1, 'expectedAssists': 0.11767, 'passPerc': 0.7631578947368421, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'giuliano-simeone', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f804'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 72, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 8, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 98, 'possessionLostCtrl': 12, 'expectedGoals': 0.0281, 'expectedAssists': 0.0608762, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f813'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 8, 'totalContest': 2, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 7, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 14, 'passPerc': 0.7916666666666666, 'longballsPerc': 0.6}, 'team': 'Las Palmas', 'name': 'viti-rozada', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f814'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 81, 'touches': 45, 'possessionLostCtrl': 7, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f815'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 40, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 6, 'totalClearance': 9, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 8, 'passPerc': 0.851063829787234, 'longballsPerc': 0.14285714285714285}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f816'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 2, 'totalClearance': 6, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 11, 'passPerc': 0.72, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alex-munoz', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f817'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 32, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'wasFouled': 2, 'minutesPlayed': 87, 'touches': 50, 'possessionLostCtrl': 8, 'passPerc': 0.8648648648648649, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f818'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 33, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 4, 'duelLost': 1, 'duelWon': 12, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 3, 'totalTackle': 6, 'errorLeadToAShot': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 12, 'passPerc': 0.8048780487804879, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f81b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 10, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 7, 'totalContest': 4, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 87, 'touches': 36, 'possessionLostCtrl': 19, 'expectedGoals': 0.0217, 'passPerc': 0.4166666666666667, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'fabio-silva', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f81c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 4, 'wonContest': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 15, 'expectedAssists': 0.00705444, 'passPerc': 0.76, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f829'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 2, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 7, 'goalsPrevented': -1.2843, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.4166666666666667}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f82a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 47, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 7, 'duelLost': 2, 'duelWon': 11, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0112876, 'passPerc': 0.9215686274509803, 'longballsPerc': 0.6}, 'team': 'Girona FC', 'name': 'juanpe', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f82b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 56, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 10, 'expectedAssists': 0.024008, 'passPerc': 0.8615384615384616, 'longballsPerc': 0.36363636363636365}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f82c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 56, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'errorLeadToAGoal': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 16, 'expectedGoals': 0.0515, 'expectedAssists': 0.0408077, 'passPerc': 0.8115942028985508, 'longballsPerc': 0.4}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f82d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 49, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 8, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 10, 'expectedGoals': 0.1546, 'keyPass': 3, 'expectedAssists': 0.282169, 'passPerc': 0.9074074074074074, 'longballsPerc': 0.3333333333333333}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f82e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 8, 'expectedGoals': 0.5606, 'keyPass': 3, 'expectedAssists': 0.0364262, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'yangel-herrera', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f830'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 47, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 11, 'accurateCross': 4, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 15, 'expectedGoals': 0.0636, 'keyPass': 3, 'expectedAssists': 0.297872, 'passPerc': 0.9038461538461539, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f831'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 10, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 8, 'wonContest': 4, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 15, 'expectedGoals': 0.0222, 'keyPass': 1, 'expectedAssists': 0.255769, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'bryan-gil', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f832'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 3, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 11, 'expectedGoals': 0.0391, 'expectedAssists': 0.025156, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'donny-van-de-beek', 'rating': 6.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f83f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 10, 'totalLongBalls': 19, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 17, 'goalsPrevented': -2.0994, 'passPerc': 0.37037037037037035, 'longballsPerc': 0.10526315789473684}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f840'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 22, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'errorLeadToAGoal': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 77, 'touches': 46, 'possessionLostCtrl': 10, 'expectedAssists': 0.0729688, 'passPerc': 0.7096774193548387, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'altimira-adria', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f841'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 62, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'ownGoals': 1, 'fouls': 2, 'minutesPlayed': 88, 'touches': 72, 'possessionLostCtrl': 4, 'expectedAssists': 0.0153161, 'passPerc': 0.9393939393939394, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f842'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 46, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 4, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 6, 'expectedAssists': 0.00770657, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.4}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 5.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f843'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 12, 'expectedAssists': 0.0536414, 'passPerc': 0.7083333333333334, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'enric-franquesa', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f844'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 21, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 2, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 77, 'touches': 34, 'possessionLostCtrl': 2, 'expectedGoals': 0.0364, 'expectedAssists': 0.00814166, 'passPerc': 0.9130434782608695, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f845'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 2, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 76, 'touches': 38, 'possessionLostCtrl': 5, 'passPerc': 0.8387096774193549, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f846'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 35, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 12, 'expectedGoals': 0.1218, 'expectedAssists': 0.0070643, 'passPerc': 0.7954545454545454, 'longballsPerc': 0.2857142857142857}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f847'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 25, 'goalAssist': 2, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 89, 'touches': 32, 'possessionLostCtrl': 1, 'keyPass': 2, 'expectedAssists': 0.0596395, 'passPerc': 0.9615384615384616, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'darko-brasanac', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f848'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'duelLost': 2, 'duelWon': 4, 'totalContest': 4, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 19, 'expectedGoals': 0.0954, 'expectedAssists': 0.0855886, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'juan-cruz', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f849'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 9, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 11, 'aerialWon': 2, 'duelLost': 19, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 3, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 17, 'expectedGoals': 0.0523, 'keyPass': 2, 'expectedAssists': 0.0156412, 'passPerc': 0.5294117647058824, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f852'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 13, 'totalLongBalls': 15, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 9, 'goalsPrevented': 0.6385, 'passPerc': 0.5909090909090909, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f853'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 11, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 20, 'expectedAssists': 0.0350098, 'passPerc': 0.5238095238095238, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f854'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 13, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 8, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 8, 'expectedGoals': 0.0802, 'keyPass': 1, 'expectedAssists': 0.0219043, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.5384615384615384}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f855'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 8, 'expectedGoals': 0.0915, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f856'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 24, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 16, 'expectedGoals': 0.0567, 'expectedAssists': 0.0138028, 'passPerc': 0.7741935483870968, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'juan-cruz', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f857'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 5, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 85, 'touches': 64, 'possessionLostCtrl': 8, 'expectedGoals': 0.2277, 'keyPass': 5, 'expectedAssists': 0.999777, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f858'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 34, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 7, 'duelLost': 10, 'duelWon': 11, 'challengeLost': 2, 'dispossessed': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 16, 'expectedAssists': 0.0229735, 'passPerc': 0.7391304347826086, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f859'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 33, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 53, 'possessionLostCtrl': 9, 'expectedGoals': 0.1003, 'keyPass': 3, 'expectedAssists': 0.869408, 'passPerc': 0.868421052631579, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f85b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 10, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 7, 'duelLost': 6, 'duelWon': 10, 'dispossessed': 1, 'bigChanceMissed': 1, 'shotOffTarget': 5, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'hitWoodwork': 1, 'goals': 1, 'wasFouled': 3, 'penaltyWon': 1, 'minutesPlayed': 85, 'touches': 38, 'possessionLostCtrl': 12, 'expectedGoals': 1.4858, 'keyPass': 1, 'expectedAssists': 0.0584187, 'passPerc': 0.5882352941176471, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f85c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 19, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 7, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 2, 'minutesPlayed': 85, 'touches': 50, 'possessionLostCtrl': 18, 'expectedGoals': 0.2522, 'keyPass': 6, 'expectedAssists': 1.00859, 'passPerc': 0.7037037037037037, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f869'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 23, 'totalLongBalls': 20, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 16, 'goalsPrevented': 0.1604, 'passPerc': 0.5897435897435898, 'longballsPerc': 0.25}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f86a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 10, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f86b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 37, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 8, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 12, 'expectedGoals': 0.0058, 'passPerc': 0.7708333333333334, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Valladolid', 'name': 'javi-sanchez', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f86c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 6, 'passPerc': 0.8695652173913043, 'longballsPerc': 0.6}, 'team': 'Real Valladolid', 'name': 'david-torres', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f86d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 30, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'interceptionWon': 1, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 17, 'expectedAssists': 0.0055037, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f86e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 7, 'aerialWon': 2, 'duelLost': 12, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 81, 'touches': 55, 'possessionLostCtrl': 11, 'expectedAssists': 0.0182218, 'passPerc': 0.8125, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'martin-mario', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f872'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 15, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.00974281, 'passPerc': 0.6818181818181818, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f873'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 7, 'dispossessed': 2, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.00684353, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'mamadou-sylla', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f87f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 9, 'totalLongBalls': 23, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 18, 'goalsPrevented': 0.3014, 'passPerc': 0.3333333333333333, 'longballsPerc': 0.21739130434782608}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f880'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 11, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 4, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 16, 'expectedGoals': 0.1013, 'expectedAssists': 0.0221526, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.25}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f881'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 23, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 10, 'expectedGoals': 0.0735, 'passPerc': 0.71875, 'longballsPerc': 0.25}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f882'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 27, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 9, 'shotOffTarget': 1, 'totalClearance': 5, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 8, 'expectedGoals': 0.0718, 'passPerc': 0.7714285714285715, 'longballsPerc': 0.625}, 'team': 'Deportivo Alavés', 'name': 'adrian-hernandez-pica', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f883'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 18, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 16, 'expectedGoals': 0.1183, 'expectedAssists': 0.00523781, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f884'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 10, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 9, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 5, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 10, 'expectedGoals': 0.0199, 'expectedAssists': 0.0160897, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.7}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f886'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 13, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 8, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 4, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 20, 'keyPass': 3, 'expectedAssists': 0.0843891, 'passPerc': 0.7647058823529411, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f887'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 80, 'touches': 32, 'possessionLostCtrl': 9, 'expectedGoals': 0.3223, 'keyPass': 1, 'expectedAssists': 0.0783759, 'passPerc': 0.7272727272727273, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'jon-guridi', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f888'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 22, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 2, 'totalContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'minutesPlayed': 89, 'touches': 44, 'possessionLostCtrl': 15, 'expectedGoals': 0.0436, 'keyPass': 3, 'expectedAssists': 0.104129, 'passPerc': 0.7333333333333333, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'abderrahman-rebbach', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f889'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 11, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 10, 'duelWon': 11, 'dispossessed': 3, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 6, 'fouls': 2, 'minutesPlayed': 89, 'touches': 31, 'possessionLostCtrl': 10, 'expectedAssists': 0.108422, 'passPerc': 0.6470588235294118, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'kike-garcia', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f896'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 21, 'totalLongBalls': 24, 'accurateLongBalls': 11, 'goalAssist': 0, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 13, 'expectedAssists': 0.00716443, 'goalsPrevented': 0.1952, 'passPerc': 0.6176470588235294, 'longballsPerc': 0.4583333333333333}, 'team': 'Mallorca', 'name': 'leo-roman', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f897'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 11, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 18, 'keyPass': 1, 'expectedAssists': 0.00913554, 'passPerc': 0.6111111111111112, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f898'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 9, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f899'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'shotOffTarget': 1, 'totalClearance': 8, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 8, 'expectedGoals': 0.0253, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.4444444444444444}, 'team': 'Mallorca', 'name': 'jose-copete', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f89a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 20, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 4, 'duelLost': 5, 'duelWon': 3, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 16, 'expectedAssists': 0.0952568, 'passPerc': 0.6896551724137931, 'longballsPerc': 0.14285714285714285}, 'team': 'Mallorca', 'name': 'toni-lato', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f89b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 16, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'errorLeadToAGoal': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 79, 'touches': 38, 'possessionLostCtrl': 12, 'expectedGoals': 0.0229, 'passPerc': 0.64, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'omar-mascarell', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f89c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 45, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 11, 'expectedGoals': 0.0391, 'keyPass': 2, 'expectedAssists': 0.236825, 'passPerc': 0.8653846153846154, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 7.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f89e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 12, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 5, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 3, 'minutesPlayed': 79, 'touches': 37, 'possessionLostCtrl': 11, 'expectedGoals': 0.0472, 'keyPass': 1, 'expectedAssists': 0.176337, 'passPerc': 0.7058823529411765, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'dani-rodriguez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8ad'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 32, 'totalLongBalls': 37, 'accurateLongBalls': 23, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 14, 'goalsPrevented': 0.0722, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.6216216216216216}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8ae'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.12126, 'passPerc': 0.75, 'longballsPerc': 0.25}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8af'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 6, 'expectedAssists': 0.00509276, 'passPerc': 0.75, 'longballsPerc': 0.16666666666666666}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8b0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 3, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 6, 'expectedGoals': 0.0217, 'keyPass': 1, 'expectedAssists': 0.0373138, 'passPerc': 0.8125, 'longballsPerc': 0.25}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8b1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 19, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 18, 'expectedAssists': 0.00716578, 'passPerc': 0.6785714285714286, 'longballsPerc': 0.375}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8b3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 89, 'touches': 36, 'possessionLostCtrl': 9, 'expectedAssists': 0.0146254, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8b6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 12, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 16, 'duelLost': 7, 'duelWon': 19, 'challengeLost': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 3, 'fouls': 4, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 39, 'possessionLostCtrl': 20, 'expectedGoals': 0.4703, 'expectedAssists': 0.00501892, 'passPerc': 0.41379310344827586, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8c4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 14, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 1, 'goalsPrevented': 0.2762, 'passPerc': 0.9333333333333333, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8c5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 44, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 82, 'touches': 74, 'possessionLostCtrl': 16, 'expectedAssists': 0.0166078, 'passPerc': 0.8461538461538461, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'andoni-gorosabel', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8c6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 53, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 7, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 9, 'expectedGoals': 0.0247, 'expectedAssists': 0.0535183, 'passPerc': 0.8688524590163934, 'longballsPerc': 0.3333333333333333}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8c8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 82, 'accuratePass': 70, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 107, 'possessionLostCtrl': 18, 'expectedGoals': 0.0538, 'keyPass': 2, 'expectedAssists': 0.188208, 'passPerc': 0.8536585365853658, 'longballsPerc': 0.75}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8ca'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 48, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 7, 'duelLost': 13, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0729097, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.7142857142857143}, 'team': 'Athletic Club', 'name': 'mikel-jauregizar', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8cb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 6, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 2, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 12, 'expectedGoals': 0.0353, 'expectedAssists': 0.0239201, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8cd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'duelLost': 6, 'duelWon': 3, 'totalContest': 8, 'wonContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 20, 'expectedGoals': 0.0579, 'keyPass': 4, 'expectedAssists': 0.25165, 'passPerc': 0.8205128205128205, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f8db'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 22, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'minutesPlayed': 90, 'touches': 29, 'goalsPrevented': -0.255, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8dc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 51, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 79, 'touches': 80, 'possessionLostCtrl': 8, 'expectedGoals': 0.0329, 'keyPass': 1, 'expectedAssists': 0.134411, 'passPerc': 0.9444444444444444, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8dd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 70, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 3, 'challengeLost': 3, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 90, 'possessionLostCtrl': 12, 'expectedAssists': 0.0121315, 'passPerc': 0.8860759493670886, 'longballsPerc': 0.8}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8de'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 58, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 1, 'duelWon': 6, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 9, 'expectedGoals': 0.6936, 'expectedAssists': 0.00673498, 'passPerc': 0.8923076923076924, 'longballsPerc': 0.4}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8df'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 57, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 19, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalTackle': 2, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 100, 'possessionLostCtrl': 26, 'keyPass': 3, 'expectedAssists': 0.261529, 'passPerc': 0.8636363636363636, 'longballsPerc': 0.4}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8e0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 60, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 8, 'expectedGoals': 0.1962, 'keyPass': 1, 'expectedAssists': 0.0418792, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.7142857142857143}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8e2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 56, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 10, 'expectedGoals': 0.1033, 'keyPass': 4, 'expectedAssists': 0.192091, 'passPerc': 0.9180327868852459, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f8f2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 13, 'totalLongBalls': 31, 'accurateLongBalls': 13, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 6, 'saves': 9, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 18, 'expectedAssists': 0.00547964, 'goalsPrevented': 1.2974, 'passPerc': 0.41935483870967744, 'longballsPerc': 0.41935483870967744}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 9.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8f3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 3, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 4, 'fouls': 4, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0229461, 'passPerc': 0.3333333333333333, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8f4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 9, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'totalClearance': 9, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 4, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8f5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 4, 'expectedGoals': 0.0281, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.2}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8f6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 8, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'totalTackle': 1, 'minutesPlayed': 83, 'touches': 26, 'possessionLostCtrl': 2, 'expectedGoals': 0.0211, 'passPerc': 0.8888888888888888, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'juan-cruz', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8f8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 15, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 7, 'duelLost': 7, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 11, 'expectedGoals': 0.1304, 'passPerc': 0.6, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8f9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 11, 'expectedGoals': 0.0322, 'keyPass': 1, 'expectedAssists': 0.119623, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.75}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8fb'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 7, 'duelLost': 6, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 34, 'possessionLostCtrl': 14, 'expectedGoals': 0.6255, 'expectedAssists': 0.0138762, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f8fc'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 14, 'goalAssist': 2, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 10, 'wonContest': 6, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'minutesPlayed': 83, 'touches': 36, 'possessionLostCtrl': 7, 'expectedGoals': 0.0729, 'keyPass': 4, 'expectedAssists': 0.429009, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f909'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 20, 'totalLongBalls': 12, 'accurateLongBalls': 9, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 3, 'keyPass': 1, 'expectedAssists': 0.018306, 'goalsPrevented': 0.2968, 'passPerc': 0.8695652173913043, 'longballsPerc': 0.75}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f90a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 22, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 8, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 89, 'touches': 71, 'possessionLostCtrl': 10, 'expectedGoals': 0.0237, 'keyPass': 3, 'expectedAssists': 0.0395449, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Betis', 'name': 'aitor-ruibal', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f90b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 31, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 10, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 10, 'expectedGoals': 0.0595, 'passPerc': 0.7560975609756098, 'longballsPerc': 0.3}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f90c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 39, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'totalClearance': 7, 'interceptionWon': 4, 'lastManTackle': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 7, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.4}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f90d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 37, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 1, 'duelWon': 4, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.013071, 'passPerc': 0.7872340425531915, 'longballsPerc': 0.2}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f90e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 4, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 11, 'expectedGoals': 0.1226, 'keyPass': 4, 'expectedAssists': 0.306584, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f90f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 33, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 17, 'expectedGoals': 0.2082, 'keyPass': 2, 'expectedAssists': 0.183182, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.42857142857142855}, 'team': 'Real Betis', 'name': 'johnny', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f910'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 7, 'expectedGoals': 0.0265, 'keyPass': 1, 'expectedAssists': 0.0392711, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.8}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f911'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 3, 'bigChanceMissed': 2, 'shotOffTarget': 7, 'hitWoodwork': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 53, 'possessionLostCtrl': 18, 'expectedGoals': 0.7866, 'keyPass': 1, 'expectedAssists': 0.0410409, 'passPerc': 0.6428571428571429, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f912'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 9, 'expectedGoals': 0.4869, 'keyPass': 2, 'expectedAssists': 0.0599992, 'passPerc': 0.8125, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'vitor-roque', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f913'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 10, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 32, 'possessionLostCtrl': 10, 'expectedGoals': 0.1975, 'keyPass': 4, 'expectedAssists': 0.0394547, 'passPerc': 0.5882352941176471, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'chimy-avila', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f91e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 28, 'totalLongBalls': 25, 'accurateLongBalls': 13, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 12, 'goalsPrevented': -0.9158, 'passPerc': 0.7, 'longballsPerc': 0.52}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f91f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 33, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 9, 'challengeLost': 6, 'totalContest': 2, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 25, 'keyPass': 2, 'expectedAssists': 0.131953, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.2}, 'team': 'Atlético Madrid', 'name': 'nahuel-molina', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f920'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 51, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'totalClearance': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 13, 'passPerc': 0.8225806451612904, 'longballsPerc': 0.4}, 'team': 'Atlético Madrid', 'name': 'axel-witsel', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f921'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 45, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 2, 'ownGoals': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 10, 'expectedGoals': 0.0652, 'expectedAssists': 0.0100863, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.7777777777777778}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f923'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 45, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 3, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 84, 'touches': 68, 'possessionLostCtrl': 14, 'expectedAssists': 0.0242117, 'passPerc': 0.8181818181818182, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'rodrigo-de-paul', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f924'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 61, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 9, 'expectedGoals': 0.0461, 'expectedAssists': 0.022655, 'passPerc': 0.9104477611940298, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f928'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 14, 'expectedGoals': 0.0571, 'keyPass': 1, 'expectedAssists': 0.074255, 'passPerc': 0.7575757575757576, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'julian-alvarez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f934'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelWon': 1, 'totalTackle': 1, 'goodHighClaim': 2, 'totalKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 6, 'goalsPrevented': -0.0142, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.4}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f936'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 57, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 10, 'expectedAssists': 0.0241076, 'passPerc': 0.8769230769230769, 'longballsPerc': 0.6}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f937'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 36, 'totalLongBalls': 16, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 19, 'expectedGoals': 0.0192, 'keyPass': 2, 'expectedAssists': 0.271288, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.3125}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f938'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 22, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 17, 'keyPass': 3, 'expectedAssists': 0.17652, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.3333333333333333}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f93a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 17, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 5, 'duelLost': 8, 'duelWon': 6, 'dispossessed': 2, 'bigChanceMissed': 2, 'shotOffTarget': 4, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'goals': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 13, 'expectedGoals': 1.2327, 'expectedAssists': 0.0098927, 'passPerc': 0.68, 'longballsPerc': 0.4}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f93b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 66, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 3, 'aerialLost': 2, 'duelLost': 2, 'duelWon': 3, 'bigChanceCreated': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 95, 'possessionLostCtrl': 21, 'keyPass': 2, 'expectedAssists': 0.346136, 'passPerc': 0.9295774647887324, 'longballsPerc': 0.8}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f93c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 84, 'touches': 40, 'possessionLostCtrl': 17, 'expectedGoals': 0.1981, 'expectedAssists': 0.0225554, 'passPerc': 0.7619047619047619, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'alex-sola', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f93e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 5, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 7, 'duelLost': 5, 'duelWon': 10, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 2, 'fouls': 4, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 9, 'expectedGoals': 0.5571, 'passPerc': 0.5, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'bertug-ozgur-yildirim', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f949'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 14, 'totalLongBalls': 32, 'accurateLongBalls': 12, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 20, 'goalsPrevented': 0.8717, 'passPerc': 0.4117647058823529, 'longballsPerc': 0.375}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f94b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 8, 'totalLongBalls': 13, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 2, 'totalClearance': 6, 'fouls': 3, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 19, 'passPerc': 0.3076923076923077, 'longballsPerc': 0.15384615384615385}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f94c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 8, 'aerialWon': 3, 'duelLost': 8, 'duelWon': 7, 'totalClearance': 11, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 6, 'passPerc': 0.85, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f94d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 11, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 3, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 23, 'possessionLostCtrl': 3, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.3333333333333333}, 'team': 'Valencia', 'name': 'maximiliano-caufriez', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f94e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 7, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 2, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 39, 'possessionLostCtrl': 15, 'passPerc': 0.4117647058823529, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'jose-luis-gaya', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f94f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 22, 'possessionLostCtrl': 8, 'expectedAssists': 0.0317948, 'passPerc': 0.5833333333333334, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f950'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 11, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 84, 'touches': 28, 'possessionLostCtrl': 9, 'expectedGoals': 0.484, 'expectedAssists': 0.00525357, 'passPerc': 0.5789473684210527, 'longballsPerc': 0.42857142857142855}, 'team': 'Valencia', 'name': 'enzo-barrenechea', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f951'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 9, 'expectedGoals': 0.1126, 'passPerc': 0.6923076923076923, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'javier-guerra', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f952'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 7, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'totalContest': 3, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 30, 'possessionLostCtrl': 16, 'passPerc': 0.5384615384615384, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f953'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 4, 'duelLost': 13, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 5, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 17, 'expectedAssists': 0.00551382, 'passPerc': 0.6190476190476191, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876d83201ea30d32f95f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 20, 'totalLongBalls': 33, 'accurateLongBalls': 12, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'totalClearance': 1, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 5, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 21, 'expectedAssists': 0.00583162, 'goalsPrevented': 1.4325, 'passPerc': 0.4878048780487805, 'longballsPerc': 0.36363636363636365}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f961'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 3, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 6, 'outfielderBlock': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 5, 'expectedAssists': 0.00517323, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f962'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 10, 'expectedAssists': 0.026244, 'passPerc': 0.8055555555555556, 'longballsPerc': 0.4}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f963'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 5, 'totalContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 4, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 11, 'expectedAssists': 0.00732554, 'passPerc': 0.9545454545454546, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'altimira-adria', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f965'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 28, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'duelWon': 11, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 2, 'totalTackle': 5, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 9, 'expectedAssists': 0.0155444, 'passPerc': 0.9032258064516129, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f966'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 8, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 19, 'passPerc': 0.42105263157894735, 'longballsPerc': 0.42857142857142855}, 'team': 'Leganés', 'name': 'enric-franquesa', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876d83201ea30d32f976'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 12, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 2, 'goalsPrevented': -0.7628, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f977'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 40, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 5, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 80, 'touches': 57, 'possessionLostCtrl': 10, 'passPerc': 0.8163265306122449, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'javier-manquillo', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f978'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 47, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 6, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 3, 'passPerc': 0.94, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f979'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 56, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 8, 'expectedGoals': 0.04, 'expectedAssists': 0.0123033, 'passPerc': 0.9180327868852459, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f97a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 82, 'accuratePass': 66, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 115, 'possessionLostCtrl': 28, 'expectedGoals': 0.0217, 'keyPass': 2, 'expectedAssists': 0.0863169, 'passPerc': 0.8048780487804879, 'longballsPerc': 0.375}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f97b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 82, 'accuratePass': 73, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'shotOffTarget': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 80, 'touches': 88, 'possessionLostCtrl': 10, 'expectedGoals': 0.0325, 'keyPass': 2, 'expectedAssists': 0.0928077, 'passPerc': 0.8902439024390244, 'longballsPerc': 0.4444444444444444}, 'team': 'Celta Vigo', 'name': 'hugo-sotelo', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f97d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 41, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 23, 'expectedGoals': 0.258, 'keyPass': 3, 'expectedAssists': 0.192377, 'passPerc': 0.7068965517241379, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876d83201ea30d32f97e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 44, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 11, 'expectedGoals': 0.2752, 'keyPass': 2, 'expectedAssists': 0.0746422, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f98d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 19, 'totalLongBalls': 21, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 13, 'goalsPrevented': -1.2447, 'passPerc': 0.59375, 'longballsPerc': 0.42857142857142855}, 'team': 'Real Madrid', 'name': 'andriy-lunin', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f98e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 30, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 15, 'expectedAssists': 0.076326, 'passPerc': 0.7692307692307693, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f98f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 5, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 8, 'expectedGoals': 0.047, 'expectedAssists': 0.00939105, 'passPerc': 0.7666666666666667, 'longballsPerc': 0.45454545454545453}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f990'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 35, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 9, 'expectedAssists': 0.0113181, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.4}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f991'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 86, 'touches': 50, 'possessionLostCtrl': 11, 'passPerc': 0.8055555555555556, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'ferland-mendy', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f992'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 8, 'expectedGoals': 0.4985, 'passPerc': 0.8666666666666667, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f993'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 22, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 17, 'expectedGoals': 0.024, 'expectedAssists': 0.00575769, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f995'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 22, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'outfielderBlock': 1, 'totalTackle': 4, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 77, 'touches': 42, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.017063, 'passPerc': 0.9166666666666666, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'camavinga-eduardo', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f996'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 13, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'bigChanceMissed': 2, 'onTargetScoringAttempt': 3, 'totalOffside': 8, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 9, 'expectedGoals': 0.5784, 'keyPass': 1, 'expectedAssists': 0.00695923, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f997'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 8, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 9, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'wasFouled': 7, 'fouls': 3, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 15, 'expectedGoals': 0.3218, 'keyPass': 1, 'expectedAssists': 0.192695, 'passPerc': 0.6666666666666666, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9a1'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 7, 'goalsPrevented': 0.4947, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.45454545454545453}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9a2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 41, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 5, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 4, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 12, 'expectedAssists': 0.0200276, 'passPerc': 0.8541666666666666, 'longballsPerc': 0.25}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9a3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 43, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 6, 'expectedAssists': 0.0059499, 'passPerc': 0.9148936170212766, 'longballsPerc': 0.8571428571428571}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9a4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 34, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 6, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 7, 'expectedGoals': 0.0309, 'keyPass': 1, 'expectedAssists': 0.148024, 'passPerc': 0.8292682926829268, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9a5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 35, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'dispossessed': 1, 'bigChanceCreated': 1, 'interceptionWon': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.0966574, 'passPerc': 0.8974358974358975, 'longballsPerc': 0.6666666666666666}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9a7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 54, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 87, 'touches': 73, 'possessionLostCtrl': 8, 'expectedGoals': 0.0252, 'keyPass': 1, 'expectedAssists': 0.0740698, 'passPerc': 0.9152542372881356, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9a8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 15, 'expectedGoals': 0.4259, 'keyPass': 3, 'expectedAssists': 0.154781, 'passPerc': 0.7878787878787878, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9aa'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 20, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 3, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 13, 'expectedGoals': 0.6691, 'keyPass': 3, 'expectedAssists': 0.319972, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9ab'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 8, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'hitWoodwork': 1, 'goals': 2, 'totalClearance': 5, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 7, 'expectedGoals': 1.3915, 'keyPass': 1, 'expectedAssists': 0.00554159, 'passPerc': 0.6153846153846154, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9b7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 14, 'totalLongBalls': 21, 'accurateLongBalls': 8, 'goalAssist': 0, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 13, 'goalsPrevented': 0.4803, 'passPerc': 0.5185185185185185, 'longballsPerc': 0.38095238095238093}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9b8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 4, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 85, 'touches': 50, 'possessionLostCtrl': 8, 'expectedAssists': 0.0155708, 'passPerc': 0.7619047619047619, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'viti-rozada', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9b9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 32, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'totalClearance': 7, 'outfielderBlock': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 3, 'keyPass': 1, 'expectedAssists': 0.00534598, 'passPerc': 0.9142857142857143, 'longballsPerc': 0.4}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9ba'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 6, 'passPerc': 0.8780487804878049, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9bb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 9, 'expectedGoals': 0.2133, 'keyPass': 1, 'expectedAssists': 0.175983, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.25}, 'team': 'Las Palmas', 'name': 'alex-munoz', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9bc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 35, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 4, 'totalClearance': 1, 'interceptionWon': 5, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0988296, 'passPerc': 0.875, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9bf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 36, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 84, 'touches': 53, 'possessionLostCtrl': 9, 'expectedGoals': 0.0612, 'keyPass': 3, 'expectedAssists': 0.038391, 'passPerc': 0.8372093023255814, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9c0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 21, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 10, 'duelWon': 2, 'dispossessed': 3, 'totalContest': 6, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 11, 'expectedGoals': 0.4469, 'keyPass': 1, 'expectedAssists': 0.0321446, 'passPerc': 0.9130434782608695, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9ce'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 24, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 1, 'goalsPrevented': 0.2441, 'passPerc': 0.96, 'longballsPerc': 0.8}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 89, 'accuratePass': 83, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 7, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 8, 'expectedAssists': 0.00914983, 'passPerc': 0.9325842696629213, 'longballsPerc': 0.25}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 99, 'accuratePass': 84, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 110, 'possessionLostCtrl': 17, 'expectedAssists': 0.0758276, 'passPerc': 0.8484848484848485, 'longballsPerc': 0.3333333333333333}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 11, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 4, 'totalContest': 4, 'wonContest': 3, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 19, 'expectedGoals': 0.2567, 'keyPass': 1, 'expectedAssists': 0.0618123, 'passPerc': 0.84375, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 44, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 2, 'errorLeadToAShot': 1, 'wasFouled': 3, 'minutesPlayed': 89, 'touches': 75, 'possessionLostCtrl': 18, 'expectedGoals': 0.1695, 'expectedAssists': 0.078716, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.16666666666666666}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 5, 'fouls': 4, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.00669045, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'donny-van-de-beek', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 22, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 6, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'shotOffTarget': 1, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 13, 'expectedGoals': 0.0341, 'expectedAssists': 0.0198785, 'passPerc': 0.88, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'arnaut-danjuma', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 21, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 7, 'wonContest': 4, 'wasFouled': 3, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 10, 'expectedAssists': 0.025947, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'gabriel-misehouy', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9d8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 4, 'accuratePass': 4, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 7, 'duelWon': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 11, 'possessionLostCtrl': 1, 'expectedGoals': 0.1107, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'bojan-miovski', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9e2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 13, 'totalLongBalls': 28, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 7, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 19, 'goalsPrevented': 0.5896, 'passPerc': 0.40625, 'longballsPerc': 0.32142857142857145}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9e3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 35, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 9, 'wonContest': 6, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 16, 'expectedGoals': 0.0599, 'keyPass': 1, 'expectedAssists': 0.0239699, 'passPerc': 0.9210526315789473, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9e4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 39, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 7, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 8, 'expectedGoals': 0.0919, 'expectedAssists': 0.0129233, 'passPerc': 0.8297872340425532, 'longballsPerc': 0.4444444444444444}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9e6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 12, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9e7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 21, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 9, 'wonContest': 6, 'bigChanceCreated': 2, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 84, 'touches': 47, 'possessionLostCtrl': 15, 'keyPass': 2, 'expectedAssists': 0.377642, 'passPerc': 0.84, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9e8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 34, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 9, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 4, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 10, 'expectedGoals': 0.034, 'expectedAssists': 0.0134065, 'passPerc': 0.7727272727272727, 'longballsPerc': 1.0}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9ea'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'dispossessed': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 40, 'possessionLostCtrl': 14, 'keyPass': 3, 'expectedAssists': 0.230257, 'passPerc': 0.7083333333333334, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32f9f9'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 15, 'totalLongBalls': 16, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'ownGoals': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 13, 'expectedAssists': 0.0322484, 'goalsPrevented': -0.0952, 'passPerc': 0.5555555555555556, 'longballsPerc': 0.25}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9fb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 11, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 7, 'passPerc': 0.6875, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9fc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 44, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 8, 'expectedAssists': 0.0291976, 'passPerc': 0.8979591836734694, 'longballsPerc': 0.4}, 'team': 'Deportivo Alavés', 'name': 'adrian-hernandez-pica', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9fd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 51, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 1, 'interceptionWon': 3, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 11, 'expectedAssists': 0.0616496, 'passPerc': 0.85, 'longballsPerc': 0.2857142857142857}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9fe'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'totalClearance': 2, 'totalTackle': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0960229, 'passPerc': 0.7, 'longballsPerc': 0.2}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32f9ff'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 13, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 13, 'expectedGoals': 0.3084, 'keyPass': 2, 'expectedAssists': 0.136606, 'passPerc': 0.6842105263157895, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa00'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 41, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 1, 'challengeLost': 4, 'dispossessed': 2, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 9, 'expectedGoals': 0.0273, 'keyPass': 4, 'expectedAssists': 0.0748609, 'passPerc': 0.8723404255319149, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'jon-guridi', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa03'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 6, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 6, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 3, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 16, 'expectedGoals': 0.0839, 'keyPass': 2, 'expectedAssists': 0.169615, 'passPerc': 0.375, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'toni-martinez', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa0f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 37, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 3, 'savedShotsFromInsideTheBox': 5, 'saves': 7, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 1, 'expectedAssists': 0.00591461, 'goalsPrevented': 2.8007, 'passPerc': 0.9736842105263158, 'longballsPerc': 0.875}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 8.7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa10'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 30, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0574841, 'passPerc': 0.8108108108108109, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa11'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 60, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 2, 'errorLeadToAShot': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 9, 'expectedAssists': 0.00548011, 'passPerc': 0.8955223880597015, 'longballsPerc': 0.5454545454545454}, 'team': 'Real Valladolid', 'name': 'javi-sanchez', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa12'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 65, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 3, 'expectedAssists': 0.0103297, 'passPerc': 0.9558823529411765, 'longballsPerc': 0.8}, 'team': 'Real Valladolid', 'name': 'david-torres', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa13'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 4, 'duelWon': 8, 'challengeLost': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 6, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 11, 'passPerc': 0.7575757575757576, 'longballsPerc': 0.6}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa15'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 4, 'shotOffTarget': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 88, 'touches': 40, 'possessionLostCtrl': 7, 'expectedGoals': 0.0193, 'expectedAssists': 0.00596565, 'passPerc': 0.8, 'longballsPerc': 0.375}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa16'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 10, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 88, 'touches': 24, 'possessionLostCtrl': 5, 'expectedGoals': 0.021, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'anuar', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa17'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 79, 'touches': 34, 'possessionLostCtrl': 13, 'expectedGoals': 0.0219, 'keyPass': 1, 'expectedAssists': 0.0356422, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'amallah-selim', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa18'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.116014, 'passPerc': 0.896551724137931, 'longballsPerc': 0.6}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa26'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 12, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 3, 'goalsPrevented': -0.1307, 'passPerc': 0.8, 'longballsPerc': 0.3333333333333333}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa27'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 65, 'totalLongBalls': 3, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 1, 'challengeLost': 1, 'bigChanceCreated': 1, 'totalClearance': 3, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.46057, 'passPerc': 0.9154929577464789, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa28'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 62, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'totalClearance': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 5, 'expectedAssists': 0.00505529, 'passPerc': 0.9253731343283582, 'longballsPerc': 0.6}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa29'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 62, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 2, 'penaltyConceded': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 8, 'expectedGoals': 0.0123, 'expectedAssists': 0.0201787, 'passPerc': 0.9117647058823529, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa2a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 8, 'expectedGoals': 0.2463, 'keyPass': 3, 'expectedAssists': 0.101317, 'passPerc': 0.8620689655172413, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa2b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 27, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 3, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 82, 'touches': 50, 'possessionLostCtrl': 9, 'expectedGoals': 0.0919, 'keyPass': 1, 'expectedAssists': 0.141242, 'passPerc': 0.9, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'ilias-akhomach', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa2d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 72, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 3, 'expectedAssists': 0.0385414, 'passPerc': 0.96, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa2e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 34, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 4, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 89, 'touches': 68, 'possessionLostCtrl': 17, 'expectedGoals': 0.1415, 'keyPass': 7, 'expectedAssists': 0.248957, 'passPerc': 0.7555555555555555, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa2f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 33, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 2, 'totalClearance': 1, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 55, 'possessionLostCtrl': 14, 'expectedGoals': 0.2026, 'expectedAssists': 0.0395776, 'passPerc': 0.7674418604651163, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'nicolas-pepe', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa3b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 10, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 19, 'possessionLostCtrl': 1, 'goalsPrevented': 0.1268, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa3d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 38, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 4, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 9, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 11, 'expectedGoals': 0.1102, 'expectedAssists': 0.0133326, 'passPerc': 0.8085106382978723, 'longballsPerc': 0.42857142857142855}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa3e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 38, 'totalLongBalls': 14, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 6, 'duelLost': 3, 'duelWon': 11, 'shotOffTarget': 2, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 18, 'expectedGoals': 0.1136, 'expectedAssists': 0.00908916, 'passPerc': 0.6909090909090909, 'longballsPerc': 0.35714285714285715}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa40'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 34, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 20, 'accurateCross': 5, 'aerialLost': 1, 'duelLost': 6, 'challengeLost': 1, 'totalContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 24, 'expectedGoals': 0.0647, 'keyPass': 5, 'expectedAssists': 0.403369, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.875}, 'team': 'Espanyol', 'name': 'alvaro-tejero', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa41'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 16, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 4, 'duelLost': 10, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 2, 'wonContest': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 8, 'expectedAssists': 0.0856975, 'passPerc': 0.9411764705882353, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa42'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 24, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 4, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 13, 'expectedGoals': 0.018, 'keyPass': 1, 'expectedAssists': 0.0178955, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'pol-lozano', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa44'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 81, 'touches': 34, 'possessionLostCtrl': 11, 'expectedGoals': 0.0473, 'passPerc': 0.7777777777777778, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa52'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 35, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 15, 'expectedAssists': 0.00841738, 'passPerc': 0.813953488372093, 'longballsPerc': 0.25}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa53'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 43, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 8, 'outfielderBlock': 2, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 9, 'passPerc': 0.8775510204081632, 'longballsPerc': 0.42857142857142855}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa54'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 44, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 5, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'tanguy-nianzou', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa55'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 31, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 8, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 7, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 15, 'expectedAssists': 0.0279228, 'passPerc': 0.7380952380952381, 'longballsPerc': 0.2}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa56'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 56, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 3, 'expectedAssists': 0.100081, 'passPerc': 0.9491525423728814, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa57'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 59, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 5, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 4, 'keyPass': 2, 'expectedAssists': 0.368071, 'passPerc': 0.9672131147540983, 'longballsPerc': 0.6666666666666666}, 'team': 'Sevilla', 'name': 'albert-sambi-lokonga', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa58'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 9, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 2, 'onTargetScoringAttempt': 2, 'goals': 2, 'totalClearance': 4, 'errorLeadToAShot': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 89, 'touches': 51, 'possessionLostCtrl': 15, 'expectedGoals': 0.095, 'expectedAssists': 0.136925, 'passPerc': 0.8214285714285714, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa59'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 29, 'totalLongBalls': 1, 'goalAssist': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'minutesPlayed': 81, 'touches': 38, 'possessionLostCtrl': 3, 'expectedGoals': 0.255, 'keyPass': 1, 'expectedAssists': 0.0214521, 'passPerc': 0.9354838709677419, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'juanlu-sanchez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa5b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 11, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 9, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 89, 'touches': 41, 'possessionLostCtrl': 19, 'expectedGoals': 0.125, 'expectedAssists': 0.062065, 'passPerc': 0.6470588235294118, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa68'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 15, 'totalLongBalls': 13, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 7, 'goalsPrevented': -1.262, 'passPerc': 0.6818181818181818, 'longballsPerc': 0.46153846153846156}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa69'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 75, 'touches': 49, 'possessionLostCtrl': 13, 'expectedGoals': 0.1562, 'keyPass': 1, 'expectedAssists': 0.0490936, 'passPerc': 0.6875, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'correia-thierry', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa6a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 46, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 13, 'expectedGoals': 0.1127, 'expectedAssists': 0.0103705, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.375}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa6b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 54, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'totalContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 7, 'expectedAssists': 0.00685574, 'passPerc': 0.9152542372881356, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa70'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 12, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 2, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 24, 'expectedAssists': 0.0137137, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa71'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'minutesPlayed': 75, 'touches': 17, 'possessionLostCtrl': 8, 'expectedGoals': 0.0823, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'dani-gomez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa72'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 3, 'dispossessed': 2, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 7, 'expectedGoals': 0.0805, 'expectedAssists': 0.0660459, 'passPerc': 0.8125, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fa7f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 17, 'totalLongBalls': 28, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 1, 'totalTackle': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 5, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 22, 'goalsPrevented': 0.2262, 'passPerc': 0.4358974358974359, 'longballsPerc': 0.25}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa81'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 5, 'passPerc': 0.8387096774193549, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa82'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 45, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 6, 'passPerc': 0.9, 'longballsPerc': 0.2}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa84'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 11, 'expectedGoals': 0.0241, 'expectedAssists': 0.00542082, 'passPerc': 0.8409090909090909, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa87'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 53, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 8, 'expectedGoals': 0.0963, 'keyPass': 1, 'expectedAssists': 0.154411, 'passPerc': 0.9137931034482759, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa88'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 46, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 10, 'expectedGoals': 0.4307, 'expectedAssists': 0.0163825, 'passPerc': 0.9019607843137255, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa96'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 40, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 2, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 2, 'goalsPrevented': -0.232, 'passPerc': 0.9523809523809523, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa97'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 42, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 4, 'totalContest': 1, 'wonContest': 1, 'totalTackle': 3, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0273621, 'passPerc': 0.84, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa98'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 94, 'accuratePass': 91, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 103, 'possessionLostCtrl': 4, 'expectedAssists': 0.016951, 'passPerc': 0.9680851063829787, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa99'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 116, 'accuratePass': 107, 'totalLongBalls': 11, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 4, 'dispossessed': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 126, 'possessionLostCtrl': 10, 'expectedAssists': 0.0265478, 'passPerc': 0.9224137931034483, 'longballsPerc': 0.7272727272727273}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa9a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 34, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 16, 'expectedGoals': 0.092, 'expectedAssists': 0.0276827, 'passPerc': 0.918918918918919, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa9b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 48, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 7, 'expectedGoals': 0.058, 'expectedAssists': 0.0236321, 'passPerc': 0.9056603773584906, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa9c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 68, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 3, 'dispossessed': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 83, 'touches': 86, 'possessionLostCtrl': 9, 'expectedGoals': 0.1066, 'keyPass': 3, 'expectedAssists': 0.644054, 'passPerc': 0.9714285714285714, 'longballsPerc': 0.875}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 8.8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa9d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'goalAssist': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 7, 'wonContest': 3, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 4, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 76, 'touches': 54, 'possessionLostCtrl': 11, 'expectedGoals': 0.7625, 'keyPass': 3, 'expectedAssists': 0.349741, 'passPerc': 0.84375, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fa9f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 29, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 76, 'touches': 45, 'possessionLostCtrl': 10, 'expectedGoals': 0.4317, 'keyPass': 1, 'expectedAssists': 0.189014, 'passPerc': 0.90625, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'ansu-fati', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32faac'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 14, 'totalLongBalls': 19, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 3, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'punches': 3, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 14, 'goalsPrevented': -0.4576, 'passPerc': 0.5, 'longballsPerc': 0.2631578947368421}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32faad'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 34, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 11, 'expectedAssists': 0.009008, 'passPerc': 0.8292682926829268, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32faae'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 41, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'bigChanceCreated': 1, 'totalClearance': 4, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0173141, 'passPerc': 0.8367346938775511, 'longballsPerc': 0.2}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32faaf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 6, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 2, 'passPerc': 0.8947368421052632, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'marcao', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fab0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 13, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 3, 'totalContest': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 6, 'fouls': 1, 'minutesPlayed': 81, 'touches': 36, 'possessionLostCtrl': 7, 'expectedAssists': 0.00635947, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fab2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 20, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 7, 'expectedAssists': 0.00676266, 'passPerc': 0.8333333333333334, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fab3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 19, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 8, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 6, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 12, 'expectedGoals': 0.1917, 'keyPass': 1, 'expectedAssists': 0.0414881, 'passPerc': 0.8636363636363636, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fab6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 23, 'possessionLostCtrl': 11, 'expectedGoals': 0.0913, 'keyPass': 1, 'expectedAssists': 0.0190262, 'passPerc': 0.6363636363636364, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fac3'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 19, 'totalLongBalls': 18, 'accurateLongBalls': 5, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 13, 'goalsPrevented': 0.7376, 'passPerc': 0.59375, 'longballsPerc': 0.2777777777777778}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fac4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 41, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 9, 'expectedAssists': 0.0204939, 'passPerc': 0.8913043478260869, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fac5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 1, 'errorLeadToAShot': 1, 'penaltyConceded': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 8, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fac7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 6, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 18, 'expectedGoals': 0.255, 'expectedAssists': 0.116036, 'passPerc': 0.6363636363636364, 'longballsPerc': 0.4}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fac8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 11, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 6, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 13, 'expectedGoals': 0.2318, 'keyPass': 2, 'expectedAssists': 0.156209, 'passPerc': 0.8205128205128205, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fac9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 43, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 8, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0495164, 'passPerc': 0.7962962962962963, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32facb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 19, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 7, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 79, 'touches': 45, 'possessionLostCtrl': 15, 'expectedGoals': 0.2329, 'keyPass': 1, 'expectedAssists': 0.140074, 'passPerc': 0.6785714285714286, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32facc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 18, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 1, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 79, 'touches': 48, 'possessionLostCtrl': 22, 'keyPass': 3, 'expectedAssists': 0.337743, 'passPerc': 0.5806451612903226, 'longballsPerc': 0.3333333333333333}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32facd'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 7, 'accuratePass': 1, 'goalAssist': 1, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 1, 'shotOffTarget': 1, 'wasFouled': 3, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 18, 'possessionLostCtrl': 10, 'expectedGoals': 0.1154, 'keyPass': 2, 'expectedAssists': 0.0411202, 'passPerc': 0.14285714285714285, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'thierno-barry', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fad6'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 16, 'totalLongBalls': 28, 'accurateLongBalls': 13, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 1, 'totalTackle': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 15, 'expectedAssists': 0.00766066, 'goalsPrevented': 0.5531, 'passPerc': 0.5161290322580645, 'longballsPerc': 0.4642857142857143}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fad7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialWon': 2, 'duelWon': 4, 'bigChanceCreated': 1, 'totalClearance': 4, 'interceptionWon': 5, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.181362, 'passPerc': 0.75, 'longballsPerc': 0.2}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fad8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 19, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 7, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.00780826, 'passPerc': 0.8260869565217391, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fad9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 11, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 6, 'expectedAssists': 0.00747048, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.7272727272727273}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fada'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 26, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 3, 'totalClearance': 1, 'interceptionWon': 4, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 16, 'keyPass': 2, 'expectedAssists': 0.0667309, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fadb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 1, 'blockedScoringAttempt': 2, 'totalClearance': 3, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 41, 'possessionLostCtrl': 12, 'expectedGoals': 0.0266, 'keyPass': 3, 'expectedAssists': 0.161455, 'passPerc': 0.7272727272727273, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'carles-perez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fadc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 8, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 3, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 11, 'expectedGoals': 0.9604, 'keyPass': 1, 'expectedAssists': 0.0130139, 'passPerc': 0.47058823529411764, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fadd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 35, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 7, 'expectedGoals': 0.052, 'keyPass': 4, 'expectedAssists': 0.214912, 'passPerc': 0.8974358974358975, 'longballsPerc': 0.8333333333333334}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32fadf'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 9, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 9, 'duelLost': 10, 'duelWon': 13, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 4, 'penaltyWon': 1, 'minutesPlayed': 89, 'touches': 31, 'possessionLostCtrl': 9, 'expectedGoals': 0.356, 'keyPass': 2, 'expectedAssists': 0.124356, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'bertug-ozgur-yildirim', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876e83201ea30d32faec'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 11, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'goodHighClaim': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 24, 'possessionLostCtrl': 5, 'goalsPrevented': -0.6541, 'passPerc': 0.6875, 'longballsPerc': 0.16666666666666666}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32faee'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 51, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'interceptionWon': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.596695, 'passPerc': 0.8947368421052632, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'axel-witsel', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32faf0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 43, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 5, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 9, 'expectedGoals': 0.0258, 'expectedAssists': 0.0153594, 'passPerc': 0.9148936170212766, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'javi-galan', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32faf1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 61, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 85, 'possessionLostCtrl': 9, 'expectedGoals': 0.0621, 'keyPass': 3, 'expectedAssists': 0.152713, 'passPerc': 0.9242424242424242, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32faf4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 55, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 90, 'possessionLostCtrl': 21, 'expectedGoals': 0.3082, 'keyPass': 4, 'expectedAssists': 0.283068, 'passPerc': 0.8208955223880597, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32faf5'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceMissed': 2, 'onTargetScoringAttempt': 4, 'blockedScoringAttempt': 3, 'goals': 2, 'totalClearance': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 9, 'expectedGoals': 2.1061, 'expectedAssists': 0.0262419, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'alexander-sorloth', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb01'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 19, 'totalLongBalls': 22, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalClearance': 2, 'errorLeadToAGoal': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 4, 'saves': 5, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 13, 'goalsPrevented': 0.5965, 'passPerc': 0.59375, 'longballsPerc': 0.4090909090909091}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb02'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 23, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 4, 'dispossessed': 1, 'totalClearance': 11, 'interceptionWon': 3, 'totalTackle': 5, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 8, 'expectedAssists': 0.00532068, 'passPerc': 0.8518518518518519, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb03'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 30, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 7, 'outfielderBlock': 2, 'interceptionWon': 4, 'errorLeadToAGoal': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 11, 'passPerc': 0.75, 'longballsPerc': 0.2222222222222222}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb04'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 36, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 3, 'totalClearance': 15, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 10, 'expectedAssists': 0.0284894, 'passPerc': 0.782608695652174, 'longballsPerc': 0.4166666666666667}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb05'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 14, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 1, 'minutesPlayed': 83, 'touches': 38, 'possessionLostCtrl': 9, 'expectedAssists': 0.00721957, 'passPerc': 0.7, 'longballsPerc': 0.25}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb07'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 29, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 9, 'expectedGoals': 0.0811, 'keyPass': 1, 'expectedAssists': 0.0505051, 'passPerc': 0.8787878787878788, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb08'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 24, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'totalClearance': 2, 'outfielderBlock': 5, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 15, 'passPerc': 0.7058823529411765, 'longballsPerc': 0.14285714285714285}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb09'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 7, 'challengeLost': 3, 'totalContest': 5, 'wonContest': 3, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 83, 'touches': 47, 'possessionLostCtrl': 9, 'expectedGoals': 0.0872, 'passPerc': 0.8214285714285714, 'longballsPerc': 0.5714285714285714}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb0b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 5, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 2, 'fouls': 1, 'minutesPlayed': 77, 'touches': 24, 'possessionLostCtrl': 14, 'passPerc': 0.5555555555555556, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb18'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 21, 'totalLongBalls': 20, 'accurateLongBalls': 10, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 10, 'expectedAssists': 0.018906, 'goalsPrevented': 0.1702, 'passPerc': 0.6774193548387096, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb19'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 20, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 20, 'expectedGoals': 0.0673, 'expectedAssists': 0.0356344, 'passPerc': 0.6896551724137931, 'longballsPerc': 0.16666666666666666}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb1a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 10, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 8, 'expectedGoals': 0.0789, 'expectedAssists': 0.0095236, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.6}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb1b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 28, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 2, 'duelWon': 6, 'shotOffTarget': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 9, 'expectedGoals': 0.0432, 'passPerc': 0.7567567567567568, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb1c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 22, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 7, 'expectedGoals': 0.026, 'keyPass': 3, 'expectedAssists': 0.379584, 'passPerc': 0.9565217391304348, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb1e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 36, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 77, 'touches': 54, 'possessionLostCtrl': 4, 'expectedGoals': 0.0327, 'expectedAssists': 0.0135074, 'passPerc': 0.9473684210526315, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb1f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 38, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 8, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 13, 'expectedGoals': 0.068, 'keyPass': 1, 'expectedAssists': 0.109489, 'passPerc': 0.7755102040816326, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb20'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 27, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 56, 'possessionLostCtrl': 16, 'expectedGoals': 0.228, 'keyPass': 4, 'expectedAssists': 0.316165, 'passPerc': 0.75, 'longballsPerc': 0.6}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb21'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 8, 'duelLost': 6, 'duelWon': 11, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 84, 'touches': 38, 'possessionLostCtrl': 13, 'expectedGoals': 0.8609, 'keyPass': 1, 'expectedAssists': 0.0563919, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb2f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 18, 'totalLongBalls': 25, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 17, 'goalsPrevented': 0.5641, 'passPerc': 0.5142857142857142, 'longballsPerc': 0.32}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb30'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 5, 'totalContest': 4, 'wonContest': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0492333, 'passPerc': 0.7419354838709677, 'longballsPerc': 0.2}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb31'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 41, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 4, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 10, 'expectedAssists': 0.00591215, 'passPerc': 0.82, 'longballsPerc': 0.42857142857142855}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb33'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 25, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 7, 'expectedAssists': 0.00640113, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'ivan-balliu', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb34'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 24, 'possessionLostCtrl': 6, 'expectedGoals': 0.2033, 'keyPass': 1, 'expectedAssists': 0.0395497, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb37'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'shotOffTarget': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 10, 'expectedGoals': 0.0194, 'keyPass': 2, 'expectedAssists': 0.0844905, 'passPerc': 0.6956521739130435, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb46'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 9, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 2, 'saves': 1, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 5, 'goalsPrevented': -1.2826, 'passPerc': 0.6428571428571429, 'longballsPerc': 0.3333333333333333}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb48'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 37, 'totalLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 4, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 7, 'expectedAssists': 0.00611521, 'passPerc': 0.8809523809523809, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb49'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 53, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 8, 'dispossessed': 1, 'blockedScoringAttempt': 2, 'totalClearance': 5, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 11, 'expectedGoals': 0.0871, 'expectedAssists': 0.0345849, 'passPerc': 0.8548387096774194, 'longballsPerc': 0.5714285714285714}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb4a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 55, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 5, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 3, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 17, 'expectedGoals': 0.0891, 'keyPass': 3, 'expectedAssists': 0.234542, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb4b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 68, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 2, 'challengeLost': 2, 'outfielderBlock': 1, 'errorLeadToAGoal': 1, 'minutesPlayed': 87, 'touches': 79, 'possessionLostCtrl': 9, 'expectedAssists': 0.0290091, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.7142857142857143}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb4c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 65, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 16, 'expectedGoals': 0.0315, 'keyPass': 3, 'expectedAssists': 0.250589, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.5714285714285714}, 'team': 'Celta Vigo', 'name': 'hugo-sotelo', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb4d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 4, 'wonContest': 3, 'totalClearance': 4, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0339238, 'passPerc': 0.7560975609756098, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb4e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 35, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 78, 'touches': 57, 'possessionLostCtrl': 13, 'expectedGoals': 0.195, 'expectedAssists': 0.0434306, 'passPerc': 0.875, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'jonathan-bamba', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb4f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 19, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 9, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 34, 'possessionLostCtrl': 10, 'expectedGoals': 0.0177, 'keyPass': 1, 'expectedAssists': 0.141499, 'passPerc': 0.8260869565217391, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'borja-iglesias', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb5d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 24, 'totalLongBalls': 11, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 9, 'goalsPrevented': 0.7408, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.18181818181818182}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb5e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 67, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 8, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 7, 'expectedAssists': 0.0108044, 'passPerc': 0.9054054054054054, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb5f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 74, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 7, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 5, 'expectedAssists': 0.0453165, 'passPerc': 0.961038961038961, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb60'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 83, 'accuratePass': 70, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 3, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 90, 'possessionLostCtrl': 13, 'expectedAssists': 0.015652, 'passPerc': 0.8433734939759037, 'longballsPerc': 0.4166666666666667}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb61'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 54, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 9, 'keyPass': 3, 'expectedAssists': 0.0639053, 'passPerc': 0.9152542372881356, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb65'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 39, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 3, 'shotOffTarget': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 10, 'expectedGoals': 0.0227, 'keyPass': 1, 'expectedAssists': 0.0396781, 'passPerc': 0.8863636363636364, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb66'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 27, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 10, 'dispossessed': 1, 'totalContest': 8, 'wonContest': 5, 'bigChanceMissed': 1, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 16, 'expectedGoals': 0.4588, 'expectedAssists': 0.0279859, 'passPerc': 0.7714285714285715, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb67'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 82, 'touches': 46, 'possessionLostCtrl': 13, 'expectedGoals': 0.1337, 'expectedAssists': 0.0571927, 'passPerc': 0.875, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb71'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 1, 'totalContest': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 9, 'goalsPrevented': -0.7086, 'passPerc': 0.7575757575757576, 'longballsPerc': 0.36363636363636365}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb73'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 55, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 7, 'expectedGoals': 0.0412, 'expectedAssists': 0.00775481, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb74'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 57, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 3, 'lastManTackle': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 8, 'expectedGoals': 0.0246, 'expectedAssists': 0.010525, 'passPerc': 0.890625, 'longballsPerc': 0.5714285714285714}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb75'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 46, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 4, 'expectedAssists': 0.0245717, 'passPerc': 0.9583333333333334, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb76'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 34, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 4, 'blockedScoringAttempt': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 13, 'expectedGoals': 0.0302, 'keyPass': 1, 'expectedAssists': 0.049651, 'passPerc': 0.8717948717948718, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb78'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 30, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 4, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 14, 'expectedGoals': 0.084, 'expectedAssists': 0.0145966, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'yangel-herrera', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb79'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 34, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 9, 'expectedGoals': 0.0276, 'keyPass': 3, 'expectedAssists': 0.180196, 'passPerc': 0.8717948717948718, 'longballsPerc': 0.8333333333333334}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb7b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 17, 'expectedGoals': 0.1857, 'expectedAssists': 0.0578017, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'arnaut-danjuma', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876e83201ea30d32fb86'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 34, 'totalLongBalls': 10, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 4, 'goalsPrevented': 0.2537, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.6}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb87'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 39, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 14, 'expectedAssists': 0.0134634, 'passPerc': 0.78, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb88'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 73, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0103776, 'passPerc': 0.948051948051948, 'longballsPerc': 0.625}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb89'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 63, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 4, 'shotOffTarget': 1, 'totalClearance': 5, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 5, 'expectedGoals': 0.2452, 'passPerc': 0.9264705882352942, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb8a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 34, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 8, 'expectedGoals': 0.017, 'keyPass': 2, 'expectedAssists': 0.175088, 'passPerc': 0.9444444444444444, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb8b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 44, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'totalContest': 3, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 7, 'expectedAssists': 0.0192946, 'passPerc': 0.8979591836734694, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb8c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'goals': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 80, 'touches': 52, 'possessionLostCtrl': 10, 'expectedGoals': 0.4011, 'keyPass': 1, 'expectedAssists': 0.0383195, 'passPerc': 0.8055555555555556, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'mikel-oyarzabal', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb8d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 28, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalClearance': 3, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 5, 'expectedGoals': 0.1332, 'keyPass': 1, 'expectedAssists': 0.0160605, 'passPerc': 0.9655172413793104, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876e83201ea30d32fb8e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 50, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 80, 'touches': 67, 'possessionLostCtrl': 9, 'expectedGoals': 0.0664, 'keyPass': 3, 'expectedAssists': 0.225064, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fb9d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 17, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'totalKeeperSweeper': 4, 'accurateKeeperSweeper': 4, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 9, 'expectedAssists': 0.00985412, 'goalsPrevented': 0.7577, 'passPerc': 0.6538461538461539, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fb9e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 22, 'expectedGoals': 0.0242, 'keyPass': 2, 'expectedAssists': 0.260895, 'passPerc': 0.8378378378378378, 'longballsPerc': 0.75}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fb9f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 41, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'totalClearance': 1, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 14, 'expectedAssists': 0.0416886, 'passPerc': 0.7454545454545455, 'longballsPerc': 0.125}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fba0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 41, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 2, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 2, 'lastManTackle': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 6, 'expectedGoals': 0.1163, 'expectedAssists': 0.0129034, 'passPerc': 0.9318181818181818, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fba1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 17, 'keyPass': 1, 'expectedAssists': 0.113546, 'passPerc': 0.6875, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fba2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 19, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 77, 'touches': 39, 'possessionLostCtrl': 11, 'expectedAssists': 0.00979357, 'passPerc': 0.7307692307692307, 'longballsPerc': 0.75}, 'team': 'Osasuna', 'name': 'pablo-ibanez-lumbreras', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fba3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 29, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 88, 'touches': 50, 'possessionLostCtrl': 10, 'expectedGoals': 0.4927, 'expectedAssists': 0.169264, 'passPerc': 0.7837837837837838, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fba4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 4, 'wonContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'interceptionWon': 4, 'fouls': 2, 'minutesPlayed': 87, 'touches': 46, 'possessionLostCtrl': 9, 'expectedGoals': 0.3338, 'keyPass': 3, 'expectedAssists': 0.257035, 'passPerc': 0.7666666666666667, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fba6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 6, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 5, 'aerialWon': 5, 'duelLost': 7, 'duelWon': 6, 'dispossessed': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 2, 'totalTackle': 1, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 24, 'possessionLostCtrl': 9, 'expectedGoals': 0.6238, 'keyPass': 2, 'expectedAssists': 0.0317525, 'passPerc': 0.5454545454545454, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fba7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 11, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 4, 'totalContest': 6, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 88, 'touches': 34, 'possessionLostCtrl': 14, 'expectedGoals': 0.0786, 'keyPass': 4, 'expectedAssists': 0.768899, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbb4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 15, 'totalLongBalls': 22, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'totalClearance': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 19, 'goalsPrevented': 0.8123, 'passPerc': 0.4411764705882353, 'longballsPerc': 0.13636363636363635}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbb5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 9, 'expectedGoals': 0.1972, 'keyPass': 1, 'expectedAssists': 0.591079, 'passPerc': 0.75, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'hector-bellerin', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbb6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 34, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 8, 'outfielderBlock': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 88, 'touches': 63, 'possessionLostCtrl': 13, 'expectedGoals': 0.0287, 'expectedAssists': 0.00981236, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.36363636363636365}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbb7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 34, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 7, 'expectedGoals': 0.0745, 'passPerc': 0.8717948717948718, 'longballsPerc': 0.4}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbb8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 17, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 20, 'keyPass': 2, 'expectedAssists': 0.132732, 'passPerc': 0.68, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbba'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 3, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 2, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 8, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Betis', 'name': 'johnny', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbbc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 23, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 38, 'possessionLostCtrl': 8, 'expectedGoals': 0.2524, 'keyPass': 4, 'expectedAssists': 0.263078, 'passPerc': 0.8518518518518519, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbc9'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 8, 'goalsPrevented': -0.7338, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.2727272727272727}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbca'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 51, 'totalLongBalls': 6, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 4, 'challengeLost': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 18, 'keyPass': 1, 'expectedAssists': 0.112017, 'passPerc': 0.7727272727272727, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbcb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 72, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 10, 'expectedGoals': 0.3188, 'expectedAssists': 0.0181479, 'passPerc': 0.9, 'longballsPerc': 0.75}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbcc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 52, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 8, 'expectedAssists': 0.00514766, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.375}, 'team': 'Athletic Club', 'name': 'unai-nunez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbcf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 55, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 9, 'dispossessed': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 6, 'fouls': 5, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0240487, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'mikel-jauregizar', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbd1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 2, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 78, 'touches': 53, 'possessionLostCtrl': 15, 'expectedGoals': 0.4517, 'keyPass': 2, 'expectedAssists': 0.0950763, 'passPerc': 0.7894736842105263, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'alex-berenguer', 'rating': 9, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbd3'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 14, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 10, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 8, 'expectedGoals': 0.0225, 'keyPass': 1, 'passPerc': 0.875, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'gorka-guruzeta', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fbdf'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 5, 'goalsPrevented': -0.6135, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbe0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 3, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 10, 'expectedAssists': 0.00748718, 'passPerc': 0.8387096774193549, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbe1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 46, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 5, 'passPerc': 0.9019607843137255, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'sergi-gomez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbe3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 16, 'expectedAssists': 0.00948537, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'brian-olivan', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbe5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 27, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 5, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 8, 'expectedAssists': 0.0227562, 'passPerc': 0.8709677419354839, 'longballsPerc': 0.8}, 'team': 'Espanyol', 'name': 'pol-lozano', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbe7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 20, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 2, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 16, 'expectedAssists': 0.013829, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbf5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 15, 'totalLongBalls': 21, 'accurateLongBalls': 7, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 1, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 14, 'expectedAssists': 0.0051266, 'goalsPrevented': -0.3814, 'passPerc': 0.5172413793103449, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbf6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 4, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.22915, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbf7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 49, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 1, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 10, 'expectedGoals': 0.213, 'keyPass': 2, 'expectedAssists': 0.0359974, 'passPerc': 0.8448275862068966, 'longballsPerc': 0.6666666666666666}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbf8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 53, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 2, 'expectedAssists': 0.0107095, 'passPerc': 0.9636363636363636, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbf9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 3, 'duelLost': 4, 'duelWon': 3, 'totalContest': 1, 'wonContest': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.115195, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbfb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 40, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 78, 'touches': 61, 'possessionLostCtrl': 12, 'expectedAssists': 0.018017, 'passPerc': 0.8, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'ander-guevara', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fbfc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 10, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.032766, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc0c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 16, 'totalLongBalls': 23, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 16, 'goalsPrevented': -0.4571, 'passPerc': 0.5, 'longballsPerc': 0.34782608695652173}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc0d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 10, 'passPerc': 0.75, 'longballsPerc': 0.6}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc0f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 34, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'challengeLost': 1, 'totalClearance': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 4, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.4}, 'team': 'Real Valladolid', 'name': 'david-torres', 'rating': 6.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc10'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 10, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 17, 'keyPass': 1, 'expectedAssists': 0.095439, 'passPerc': 0.625, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Valladolid', 'name': 'raul-chasco', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc11'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 7, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 4, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'interceptionWon': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 9, 'keyPass': 3, 'expectedAssists': 0.257468, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc12'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 13, 'totalLongBalls': 6, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 4, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 13, 'expectedGoals': 0.1114, 'expectedAssists': 0.00839824, 'passPerc': 0.5, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc14'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 7, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 7, 'duelLost': 7, 'duelWon': 11, 'challengeLost': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 2, 'penaltyWon': 1, 'minutesPlayed': 89, 'touches': 32, 'possessionLostCtrl': 10, 'expectedGoals': 0.5414, 'passPerc': 0.4375, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'anuar', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc16'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'goalAssist': 1, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 5, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 20, 'possessionLostCtrl': 9, 'expectedGoals': 0.7884, 'keyPass': 3, 'expectedAssists': 0.0616025, 'passPerc': 0.6363636363636364, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'mamadou-sylla', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc22'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'minutesPlayed': 90, 'touches': 19, 'goalsPrevented': -0.613, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc23'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 54, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 18, 'expectedGoals': 0.02, 'keyPass': 3, 'expectedAssists': 0.262458, 'passPerc': 0.8709677419354839, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc24'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 95, 'accuratePass': 87, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 8, 'expectedGoals': 0.0112, 'keyPass': 1, 'expectedAssists': 0.0703069, 'passPerc': 0.9157894736842105, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc25'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 105, 'accuratePass': 95, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 118, 'possessionLostCtrl': 11, 'expectedGoals': 0.0769, 'keyPass': 1, 'expectedAssists': 0.0358927, 'passPerc': 0.9047619047619048, 'longballsPerc': 0.625}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc27'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 72, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 12, 'expectedGoals': 0.1171, 'keyPass': 3, 'expectedAssists': 0.220282, 'passPerc': 0.9113924050632911, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc28'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 33, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 11, 'totalContest': 7, 'wonContest': 6, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 18, 'expectedGoals': 0.1643, 'keyPass': 1, 'expectedAssists': 0.187338, 'passPerc': 0.8461538461538461, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 8.3, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc29'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 42, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 8, 'expectedGoals': 0.0298, 'keyPass': 1, 'expectedAssists': 0.33582, 'passPerc': 0.9333333333333333, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc2a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 86, 'accuratePass': 80, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 12, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 112, 'possessionLostCtrl': 17, 'keyPass': 3, 'expectedAssists': 0.191589, 'passPerc': 0.9302325581395349, 'longballsPerc': 0.6}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc2c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'goalAssist': 1, 'aerialLost': 4, 'duelLost': 6, 'dispossessed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 8, 'expectedGoals': 0.1893, 'keyPass': 1, 'expectedAssists': 0.0395847, 'passPerc': 0.7777777777777778, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'mikel-oyarzabal', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc39'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 19, 'totalLongBalls': 24, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 19, 'goalsPrevented': 0.0212, 'passPerc': 0.5277777777777778, 'longballsPerc': 0.2916666666666667}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc3a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 11, 'expectedGoals': 0.3717, 'expectedAssists': 0.00677216, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.25}, 'team': 'Atlético Madrid', 'name': 'nahuel-molina', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc3b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 20, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 6, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 1, 'passPerc': 0.9523809523809523, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'axel-witsel', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc3c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 18, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 4, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 3, 'passPerc': 0.9, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc3d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 10, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 8, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.125}, 'team': 'Atlético Madrid', 'name': 'clement-lenglet', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc3e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 18, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 7, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 83, 'touches': 51, 'possessionLostCtrl': 19, 'keyPass': 2, 'expectedAssists': 0.0141959, 'passPerc': 0.6428571428571429, 'longballsPerc': 0.3333333333333333}, 'team': 'Atlético Madrid', 'name': 'javi-galan', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc3f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 9, 'duelWon': 6, 'challengeLost': 3, 'dispossessed': 2, 'totalContest': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 15, 'passPerc': 0.72, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 6.2, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc40'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'totalClearance': 4, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 7, 'expectedAssists': 0.00509976, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc42'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 26, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 8, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 83, 'touches': 53, 'possessionLostCtrl': 19, 'keyPass': 2, 'expectedAssists': 0.278589, 'passPerc': 0.6341463414634146, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fc4f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 19, 'totalLongBalls': 26, 'accurateLongBalls': 8, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 1, 'lastManTackle': 1, 'totalTackle': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 18, 'goalsPrevented': 0.5805, 'passPerc': 0.5135135135135135, 'longballsPerc': 0.3076923076923077}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc50'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 2, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 10, 'expectedGoals': 0.0134, 'passPerc': 0.875, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc51'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 53, 'totalLongBalls': 16, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 4, 'errorLeadToAShot': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 15, 'passPerc': 0.7910447761194029, 'longballsPerc': 0.4375}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc52'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 36, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 89, 'touches': 53, 'possessionLostCtrl': 9, 'expectedAssists': 0.00575823, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'tanguy-nianzou', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc53'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 18, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 1, 'totalClearance': 4, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 79, 'touches': 38, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.00616103, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc55'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 5, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 6, 'expectedGoals': 0.0776, 'keyPass': 3, 'expectedAssists': 0.125122, 'passPerc': 0.85, 'longballsPerc': 0.42857142857142855}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc56'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 3, 'goals': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 17, 'expectedGoals': 1.1276, 'expectedAssists': 0.0446615, 'passPerc': 0.7647058823529411, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc57'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 79, 'touches': 30, 'possessionLostCtrl': 8, 'expectedGoals': 0.0199, 'keyPass': 1, 'expectedAssists': 0.010047, 'passPerc': 0.6956521739130435, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'peque-fernandez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc58'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 23, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 7, 'wonContest': 5, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 44, 'possessionLostCtrl': 8, 'expectedGoals': 0.0221, 'keyPass': 3, 'expectedAssists': 0.122287, 'passPerc': 0.92, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'chidera-ejuke', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc64'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 4, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 7, 'goalsPrevented': -0.2146, 'passPerc': 0.7407407407407407, 'longballsPerc': 0.2222222222222222}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc65'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 32, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 3, 'totalContest': 2, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.368759, 'passPerc': 0.7804878048780488, 'longballsPerc': 0.6}, 'team': 'Real Betis', 'name': 'hector-bellerin', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc66'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 49, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 1, 'errorLeadToAShot': 1, 'penaltyConceded': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0141049, 'passPerc': 0.8305084745762712, 'longballsPerc': 0.2}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc67'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 43, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 6, 'duelLost': 1, 'duelWon': 8, 'blockedScoringAttempt': 1, 'totalClearance': 8, 'outfielderBlock': 1, 'interceptionWon': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 7, 'expectedGoals': 0.0362, 'passPerc': 0.86, 'longballsPerc': 0.4}, 'team': 'Real Betis', 'name': 'natan', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc68'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 16, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 2, 'totalClearance': 5, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 86, 'touches': 41, 'possessionLostCtrl': 12, 'passPerc': 0.6153846153846154, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'ricardo-rodriguez', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc69'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 28, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 9, 'duelWon': 3, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 8, 'expectedGoals': 0.0212, 'expectedAssists': 0.00783624, 'passPerc': 0.8484848484848485, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'johnny', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc6b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 22, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.010776, 'passPerc': 0.7096774193548387, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc6c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 19, 'expectedGoals': 0.1482, 'keyPass': 2, 'expectedAssists': 0.185445, 'passPerc': 0.7894736842105263, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'lo-celso-giovani', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc6d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 10, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 6, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 79, 'touches': 37, 'possessionLostCtrl': 11, 'expectedGoals': 0.0367, 'expectedAssists': 0.0329478, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc7b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 19, 'accurateLongBalls': 15, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 5, 'saves': 6, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 4, 'expectedAssists': 0.00960109, 'goalsPrevented': 1.121, 'passPerc': 0.8, 'longballsPerc': 0.7894736842105263}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 8.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc7e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 14, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'totalTackle': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 8, 'passPerc': 0.7, 'longballsPerc': 0.4}, 'team': 'Deportivo Alavés', 'name': 'santiago-mourino', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc7f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 16, 'expectedGoals': 0.025, 'expectedAssists': 0.0868986, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc80'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 8, 'expectedGoals': 0.0596, 'keyPass': 1, 'expectedAssists': 0.0134203, 'passPerc': 0.76, 'longballsPerc': 0.4}, 'team': 'Deportivo Alavés', 'name': 'ander-guevara', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc81'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 13, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 2, 'shotOffTarget': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 78, 'touches': 36, 'possessionLostCtrl': 14, 'expectedGoals': 0.0964, 'keyPass': 1, 'expectedAssists': 0.0119004, 'passPerc': 0.6842105263157895, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc82'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 4, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 4, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 18, 'expectedGoals': 0.0785, 'keyPass': 2, 'expectedAssists': 0.166362, 'passPerc': 0.7727272727272727, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc84'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'totalClearance': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.105264, 'passPerc': 0.6, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'abderrahman-rebbach', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fc92'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 51, 'totalLongBalls': 18, 'accurateLongBalls': 8, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'totalClearance': 3, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'totalKeeperSweeper': 4, 'accurateKeeperSweeper': 4, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 10, 'goalsPrevented': 0.3654, 'passPerc': 0.8360655737704918, 'longballsPerc': 0.4444444444444444}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc94'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 117, 'accuratePass': 111, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 2, 'totalClearance': 6, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 128, 'possessionLostCtrl': 6, 'expectedAssists': 0.0111124, 'passPerc': 0.9487179487179487, 'longballsPerc': 0.6}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc95'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 95, 'accuratePass': 91, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 4, 'bigChanceCreated': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'wasFouled': 3, 'minutesPlayed': 81, 'touches': 103, 'possessionLostCtrl': 5, 'keyPass': 1, 'expectedAssists': 0.0641028, 'passPerc': 0.9578947368421052, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc96'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 21, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 5, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 81, 'touches': 40, 'possessionLostCtrl': 4, 'expectedAssists': 0.0200542, 'passPerc': 0.9130434782608695, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc97'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 75, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 94, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0350791, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc98'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 17, 'expectedGoals': 0.2931, 'keyPass': 1, 'expectedAssists': 0.132955, 'passPerc': 0.8043478260869565, 'longballsPerc': 0.25}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc9a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'totalLongBalls': 1, 'goalAssist': 2, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 4, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 3, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 10, 'expectedGoals': 0.6102, 'keyPass': 6, 'expectedAssists': 1.11934, 'passPerc': 0.8620689655172413, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc9c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 17, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 5, 'blockedScoringAttempt': 1, 'goals': 3, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 14, 'expectedGoals': 1.6639, 'passPerc': 0.6538461538461539, 'longballsPerc': 0.6666666666666666}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 9.8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fc9d'), 'position': 'D', 'substitute': True, 'statistics': {'totalPass': 55, 'accuratePass': 51, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 84, 'touches': 64, 'possessionLostCtrl': 6, 'expectedGoals': 0.0195, 'keyPass': 1, 'expectedAssists': 0.05067, 'passPerc': 0.9272727272727272, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'eric-garcia', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fca7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'totalLongBalls': 10, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'penaltySave': 2, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 9, 'goalsPrevented': 1.4162, 'passPerc': 0.625, 'longballsPerc': 0.1}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fca8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 74, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 4, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 1, 'totalClearance': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 3, 'minutesPlayed': 89, 'touches': 95, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0217184, 'passPerc': 0.961038961038961, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fca9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 94, 'accuratePass': 79, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 6, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 105, 'possessionLostCtrl': 16, 'expectedGoals': 0.0654, 'expectedAssists': 0.0294137, 'passPerc': 0.8404255319148937, 'longballsPerc': 0.4166666666666667}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcaa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 71, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 10, 'expectedGoals': 0.2437, 'expectedAssists': 0.0105517, 'passPerc': 0.8875, 'longballsPerc': 0.3333333333333333}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 43, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 4, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'errorLeadToAShot': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 7, 'expectedGoals': 0.1169, 'keyPass': 4, 'expectedAssists': 0.381372, 'passPerc': 0.9347826086956522, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcac'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 68, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 89, 'touches': 85, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0330332, 'passPerc': 0.9577464788732394, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcad'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 48, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 10, 'duelWon': 16, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 3, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 6, 'wasFouled': 4, 'fouls': 4, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 14, 'expectedGoals': 0.1779, 'expectedAssists': 0.0179304, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'yangel-herrera', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcae'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 43, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 4, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 89, 'touches': 87, 'possessionLostCtrl': 26, 'expectedGoals': 0.0678, 'keyPass': 4, 'expectedAssists': 0.806084, 'passPerc': 0.7543859649122807, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'yaser-asprilla', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcaf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 32, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 3, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 12, 'expectedGoals': 0.0989, 'keyPass': 1, 'expectedAssists': 0.626731, 'passPerc': 0.8421052631578947, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'donny-van-de-beek', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcb1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 11, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 3, 'totalContest': 2, 'wonContest': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 24, 'possessionLostCtrl': 6, 'expectedAssists': 0.0701808, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'abel-ruiz', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcbb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 17, 'totalLongBalls': 25, 'accurateLongBalls': 14, 'goalAssist': 0, 'errorLeadToAGoal': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'totalKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 11, 'goalsPrevented': -0.0273, 'passPerc': 0.6071428571428571, 'longballsPerc': 0.56}, 'team': 'Athletic Club', 'name': 'padilla-alex', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcbc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 34, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 6, 'expectedGoals': 0.0451, 'expectedAssists': 0.00899309, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.6666666666666666}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcbd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 6, 'passPerc': 0.84375, 'longballsPerc': 0.25}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcbe'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 29, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 6, 'passPerc': 0.8529411764705882, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcbf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 13, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 78, 'touches': 41, 'possessionLostCtrl': 14, 'passPerc': 0.6842105263157895, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'adama-boiro', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcc2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 30, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 79, 'touches': 48, 'possessionLostCtrl': 5, 'expectedGoals': 0.8526, 'penaltyMiss': 1, 'expectedAssists': 0.0108273, 'passPerc': 0.967741935483871, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'ander-herrera', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcc3'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 15, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 1, 'interceptionWon': 1, 'wasFouled': 4, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 13, 'expectedAssists': 0.12494, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcc5'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 14, 'expectedGoals': 0.9596, 'keyPass': 2, 'penaltyMiss': 1, 'expectedAssists': 0.409597, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'alex-berenguer', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcd2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 3, 'wasFouled': 1, 'saves': 1, 'punches': 3, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 4, 'goalsPrevented': 0.0143, 'passPerc': 0.875, 'longballsPerc': 0.42857142857142855}, 'team': 'Real Madrid', 'name': 'andriy-lunin', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcd3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 62, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 5, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 85, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0358507, 'passPerc': 0.8857142857142857, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'daniel-carvajal', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcd4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 48, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 3, 'expectedAssists': 0.00567078, 'passPerc': 0.9411764705882353, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcd5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 61, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 1, 'expectedGoals': 0.1564, 'expectedAssists': 0.00749969, 'passPerc': 0.9838709677419355, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcd6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 54, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 5, 'expectedAssists': 0.00998784, 'passPerc': 0.9473684210526315, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'ferland-mendy', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcd7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 86, 'accuratePass': 76, 'totalLongBalls': 10, 'accurateLongBalls': 7, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 102, 'possessionLostCtrl': 13, 'expectedGoals': 0.0547, 'keyPass': 3, 'expectedAssists': 0.214044, 'passPerc': 0.8837209302325582, 'longballsPerc': 0.7}, 'team': 'Real Madrid', 'name': 'luka-modric', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcd8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 77, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 1, 'totalCross': 1, 'aerialWon': 1, 'duelWon': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 5, 'expectedGoals': 0.0203, 'keyPass': 3, 'expectedAssists': 0.047381, 'passPerc': 0.9625, 'longballsPerc': 0.8571428571428571}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 8.8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcda'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 59, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 6, 'expectedGoals': 0.085, 'expectedAssists': 0.0693992, 'passPerc': 0.9672131147540983, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fcdc'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 79, 'touches': 52, 'possessionLostCtrl': 11, 'expectedGoals': 0.0759, 'keyPass': 1, 'expectedAssists': 0.0484062, 'passPerc': 0.7948717948717948, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fce8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 20, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelWon': 1, 'totalTackle': 1, 'goodHighClaim': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 2, 'goalsPrevented': -1.5338, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.3333333333333333}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fce9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 59, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0236823, 'passPerc': 0.9516129032258065, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fceb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 49, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'outfielderBlock': 2, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 6, 'expectedAssists': 0.00828573, 'passPerc': 0.8909090909090909, 'longballsPerc': 0.375}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcec'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 1, 'totalContest': 2, 'totalClearance': 3, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 86, 'touches': 46, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0477167, 'passPerc': 0.8620689655172413, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fced'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 64, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 10, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 5, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0281615, 'passPerc': 0.927536231884058, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcee'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 64, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 5, 'dispossessed': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 79, 'touches': 72, 'possessionLostCtrl': 3, 'expectedAssists': 0.0237271, 'passPerc': 0.9846153846153847, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcef'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 13, 'expectedGoals': 0.1587, 'keyPass': 1, 'expectedAssists': 0.231179, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcf1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 2, 'shotOffTarget': 3, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 7, 'expectedGoals': 0.6973, 'keyPass': 1, 'expectedAssists': 0.00954145, 'passPerc': 0.8125, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'thierno-barry', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcfb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'totalLongBalls': 12, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 3, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 6, 'goalsPrevented': -0.1506, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'dinko-horkas', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcfc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 43, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 2, 'expectedAssists': 0.0935399, 'passPerc': 0.9555555555555556, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'viti-rozada', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcfd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 46, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 1, 'wasFouled': 2, 'minutesPlayed': 75, 'touches': 61, 'possessionLostCtrl': 8, 'expectedAssists': 0.00774244, 'passPerc': 0.8518518518518519, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fcfe'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 42, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 6, 'expectedGoals': 0.2349, 'expectedAssists': 0.00945994, 'passPerc': 0.875, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'juanma-herzog', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd01'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 78, 'accuratePass': 74, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 5, 'duelLost': 1, 'duelWon': 12, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 4, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 5, 'expectedGoals': 0.0696, 'keyPass': 1, 'expectedAssists': 0.135975, 'passPerc': 0.9487179487179487, 'longballsPerc': 0.8}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 8.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd02'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 25, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 17, 'accurateCross': 7, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 27, 'expectedGoals': 0.2116, 'keyPass': 4, 'expectedAssists': 0.402236, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.4}, 'team': 'Las Palmas', 'name': 'adnan-januzaj', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd04'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 41, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 7, 'dispossessed': 3, 'totalContest': 5, 'wonContest': 4, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 3, 'totalClearance': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 13, 'expectedGoals': 0.3366, 'keyPass': 2, 'expectedAssists': 0.133914, 'passPerc': 0.8367346938775511, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd12'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 14, 'totalLongBalls': 25, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'punches': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 16, 'goalsPrevented': 0.9067, 'passPerc': 0.4666666666666667, 'longballsPerc': 0.36}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 8.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd14'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 10, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 5, 'passPerc': 0.8275862068965517, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd15'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 42, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 10, 'keyPass': 1, 'passPerc': 0.875, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd16'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 27, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 65, 'possessionLostCtrl': 17, 'expectedGoals': 0.0771, 'keyPass': 2, 'expectedAssists': 0.282841, 'passPerc': 0.7297297297297297, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd17'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 41, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 3, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 6, 'expectedGoals': 0.0062, 'expectedAssists': 0.0167882, 'passPerc': 0.8913043478260869, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd19'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 6, 'wonContest': 4, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 79, 'touches': 63, 'possessionLostCtrl': 15, 'expectedAssists': 0.0541956, 'passPerc': 0.7619047619047619, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd29'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 1, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 6, 'goalsPrevented': -0.6739, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd2a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 16, 'keyPass': 5, 'expectedAssists': 0.218517, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd2b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 19, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 2, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 9, 'expectedGoals': 0.2332, 'passPerc': 0.7307692307692307, 'longballsPerc': 0.4}, 'team': 'Real Valladolid', 'name': 'abdulay-juma-bah', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd2c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 53, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 6, 'expectedAssists': 0.00560425, 'passPerc': 0.8983050847457628, 'longballsPerc': 0.42857142857142855}, 'team': 'Real Valladolid', 'name': 'david-torres', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd2d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 15, 'expectedGoals': 0.0432, 'keyPass': 1, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd2e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 22, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 7, 'challengeLost': 3, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 9, 'expectedGoals': 0.1116, 'expectedAssists': 0.00972541, 'passPerc': 0.8148148148148148, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'martin-mario', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd30'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 14, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 8, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 83, 'touches': 37, 'possessionLostCtrl': 10, 'expectedGoals': 1.1756, 'expectedAssists': 0.0266882, 'passPerc': 0.9333333333333333, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'amallah-selim', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764876f83201ea30d32fd40'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 17, 'totalLongBalls': 16, 'accurateLongBalls': 9, 'goalAssist': 0, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 9, 'goalsPrevented': 0.2433, 'passPerc': 0.68, 'longballsPerc': 0.5625}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd41'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 28, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 5, 'duelWon': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 18, 'expectedGoals': 0.1793, 'keyPass': 1, 'expectedAssists': 0.0220538, 'passPerc': 0.7777777777777778, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd42'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 58, 'totalLongBalls': 10, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 8, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 10, 'expectedGoals': 0.0275, 'expectedAssists': 0.0107053, 'passPerc': 0.8787878787878788, 'longballsPerc': 0.7}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd43'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 52, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 8, 'expectedGoals': 0.0688, 'expectedAssists': 0.00888235, 'passPerc': 0.8813559322033898, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd44'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 39, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 6, 'expectedAssists': 0.00969302, 'passPerc': 0.8863636363636364, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'ivan-balliu', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd45'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 6, 'expectedGoals': 0.7689, 'expectedAssists': 0.0382786, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 8.6, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd47'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 59, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 83, 'touches': 77, 'possessionLostCtrl': 8, 'expectedGoals': 0.0339, 'keyPass': 1, 'expectedAssists': 0.071741, 'passPerc': 0.921875, 'longballsPerc': 0.6}, 'team': 'Rayo Vallecano', 'name': 'unai-lopez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd49'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 3, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 77, 'touches': 51, 'possessionLostCtrl': 12, 'expectedGoals': 0.1132, 'keyPass': 1, 'expectedAssists': 0.0837369, 'passPerc': 0.8235294117647058, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'isi-palazon', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd4a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 14, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 2, 'minutesPlayed': 77, 'touches': 30, 'possessionLostCtrl': 9, 'expectedGoals': 0.0447, 'keyPass': 2, 'expectedAssists': 0.0162541, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'sergio-camello', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764876f83201ea30d32fd57'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 9, 'totalLongBalls': 19, 'accurateLongBalls': 8, 'goalAssist': 0, 'saves': 1, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 11, 'goalsPrevented': -0.4896, 'passPerc': 0.45, 'longballsPerc': 0.42105263157894735}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd59'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 8, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 1, 'duelWon': 7, 'totalClearance': 11, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 83, 'touches': 31, 'possessionLostCtrl': 9, 'passPerc': 0.5, 'longballsPerc': 0.16666666666666666}, 'team': 'Getafe', 'name': 'juan-berrocal', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd5a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 18, 'totalLongBalls': 12, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 7, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 14, 'expectedGoals': 0.0934, 'expectedAssists': 0.0112128, 'passPerc': 0.5806451612903226, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd5b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 10, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 27, 'keyPass': 1, 'expectedAssists': 0.082354, 'passPerc': 0.43478260869565216, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd5c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 8, 'accuratePass': 6, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 6, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 8, 'expectedGoals': 0.0795, 'expectedAssists': 0.0157953, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'carles-perez', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd5d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 9, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 5, 'duelLost': 7, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 20, 'expectedGoals': 0.0718, 'keyPass': 1, 'expectedAssists': 0.00603992, 'passPerc': 0.375, 'longballsPerc': 0.2857142857142857}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd5e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 19, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 10, 'expectedGoals': 0.0173, 'keyPass': 1, 'expectedAssists': 0.333044, 'passPerc': 0.8260869565217391, 'longballsPerc': 0.2}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd6e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 30, 'totalLongBalls': 17, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 10, 'goalsPrevented': 0.4235, 'passPerc': 0.75, 'longballsPerc': 0.4117647058823529}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd6f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 12, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 4, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'totalContest': 4, 'wonContest': 2, 'totalClearance': 6, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 29, 'expectedAssists': 0.0916136, 'passPerc': 0.5454545454545454, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd70'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 32, 'totalLongBalls': 14, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalClearance': 9, 'outfielderBlock': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 12, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.35714285714285715}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd71'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 37, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 11, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 7, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 7, 'passPerc': 0.925, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd72'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 15, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 16, 'expectedGoals': 0.0146, 'keyPass': 1, 'expectedAssists': 0.134636, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd73'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 15, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 7, 'aerialWon': 6, 'duelLost': 10, 'duelWon': 15, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 6, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 19, 'expectedGoals': 0.1453, 'expectedAssists': 0.0184342, 'passPerc': 0.4838709677419355, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'pablo-ibanez-lumbreras', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd75'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 79, 'touches': 39, 'possessionLostCtrl': 9, 'expectedAssists': 0.0121215, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd77'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 9, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 8, 'aerialWon': 5, 'duelLost': 12, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 16, 'expectedGoals': 0.1024, 'keyPass': 1, 'expectedAssists': 0.0332537, 'passPerc': 0.5294117647058824, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764876f83201ea30d32fd78'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 5, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 3, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 79, 'touches': 29, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0101295, 'passPerc': 0.38461538461538464, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fd85'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 12, 'totalLongBalls': 19, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 13, 'goalsPrevented': 1.576, 'passPerc': 0.48, 'longballsPerc': 0.3684210526315789}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd86'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 9, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 12, 'passPerc': 0.6875, 'longballsPerc': 0.1111111111111111}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd87'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 8, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 5, 'passPerc': 0.8, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'sergi-gomez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd88'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 30, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 9, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 9, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 7, 'expectedGoals': 0.5547, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.4444444444444444}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd89'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 22, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 20, 'expectedGoals': 0.0246, 'expectedAssists': 0.0616327, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd8a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 21, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 5, 'duelWon': 13, 'challengeLost': 1, 'totalClearance': 5, 'totalTackle': 6, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 3, 'expectedAssists': 0.00660338, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'jose-gragera', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd8b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 75, 'touches': 40, 'possessionLostCtrl': 9, 'keyPass': 3, 'expectedAssists': 0.0985147, 'passPerc': 0.7419354838709677, 'longballsPerc': 0.4}, 'team': 'Espanyol', 'name': 'pol-lozano', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd8c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 12, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 5, 'fouls': 2, 'minutesPlayed': 83, 'touches': 37, 'possessionLostCtrl': 11, 'expectedGoals': 0.1648, 'keyPass': 2, 'expectedAssists': 0.556055, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd8d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 7, 'expectedGoals': 0.0153, 'expectedAssists': 0.0565744, 'passPerc': 0.8421052631578947, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd8f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 10, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'wasFouled': 3, 'minutesPlayed': 83, 'touches': 22, 'possessionLostCtrl': 5, 'expectedGoals': 0.0563, 'expectedAssists': 0.012229, 'passPerc': 0.7692307692307693, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'alejo-veliz', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fd9c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 24, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 4, 'expectedAssists': 0.0059092, 'goalsPrevented': -0.8614, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fd9d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 7, 'wonContest': 5, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 20, 'keyPass': 2, 'expectedAssists': 0.282562, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.16666666666666666}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fd9e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 39, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 5, 'aerialWon': 8, 'duelLost': 10, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 5, 'interceptionWon': 4, 'fouls': 4, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 13, 'expectedGoals': 0.8429, 'keyPass': 2, 'expectedAssists': 0.182981, 'passPerc': 0.7959183673469388, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 8.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fd9f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 56, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 7, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 5, 'expectedAssists': 0.0142804, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.75}, 'team': 'Mallorca', 'name': 'jose-copete', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fda2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 50, 'totalLongBalls': 11, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 80, 'touches': 61, 'possessionLostCtrl': 4, 'expectedAssists': 0.0128745, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.7272727272727273}, 'team': 'Mallorca', 'name': 'omar-mascarell', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fda3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 45, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 11, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 6, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 19, 'expectedGoals': 0.0183, 'expectedAssists': 0.0145813, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.6}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fda6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 7, 'aerialWon': 2, 'duelLost': 15, 'duelWon': 3, 'dispossessed': 5, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 15, 'expectedGoals': 0.2219, 'keyPass': 1, 'passPerc': 0.5833333333333334, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'cyle-larin', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdb3'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 15, 'totalLongBalls': 15, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelWon': 1, 'wasFouled': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 12, 'goalsPrevented': 0.1825, 'passPerc': 0.5769230769230769, 'longballsPerc': 0.26666666666666666}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdb4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 31, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 17, 'expectedGoals': 0.0952, 'expectedAssists': 0.0132559, 'passPerc': 0.7560975609756098, 'longballsPerc': 0.3333333333333333}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdb5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 90, 'accuratePass': 78, 'totalLongBalls': 17, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 9, 'dispossessed': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 14, 'expectedAssists': 0.0132537, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.5294117647058824}, 'team': 'Leganés', 'name': 'jorge-saenz', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdb6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 73, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 6, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 8, 'passPerc': 0.9240506329113924, 'longballsPerc': 0.625}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdb7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 34, 'totalLongBalls': 5, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 18, 'expectedAssists': 0.0160444, 'passPerc': 0.7083333333333334, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdb9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 49, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'totalContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 84, 'touches': 64, 'possessionLostCtrl': 7, 'expectedGoals': 0.0233, 'expectedAssists': 0.0383576, 'passPerc': 0.9245283018867925, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdba'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 2, 'minutesPlayed': 84, 'touches': 40, 'possessionLostCtrl': 14, 'expectedGoals': 0.0262, 'keyPass': 2, 'expectedAssists': 0.213009, 'passPerc': 0.8181818181818182, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'juan-cruz', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdbb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 37, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 8, 'expectedGoals': 0.3801, 'keyPass': 3, 'expectedAssists': 0.110724, 'passPerc': 0.925, 'longballsPerc': 0.8}, 'team': 'Leganés', 'name': 'roberto-lopez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdbc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 20, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 8, 'expectedAssists': 0.0286711, 'passPerc': 0.8333333333333334, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'altimira-adria', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdc8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 16, 'totalLongBalls': 18, 'accurateLongBalls': 4, 'goalAssist': 0, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 15, 'passPerc': 0.5333333333333333, 'longballsPerc': 0.2222222222222222}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdc9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 13, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 14, 'expectedAssists': 0.0143289, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'dimitri-foulquier', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdca'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 27, 'totalLongBalls': 15, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 6, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 14, 'expectedGoals': 0.0123, 'passPerc': 0.675, 'longballsPerc': 0.4666666666666667}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdcb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 42, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 2, 'passPerc': 0.9545454545454546, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdcc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 32, 'totalLongBalls': 15, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 16, 'expectedAssists': 0.0187666, 'passPerc': 0.6808510638297872, 'longballsPerc': 0.26666666666666666}, 'team': 'Valencia', 'name': 'gasiorowski-yarek', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdcd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 14, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 6, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 17, 'expectedGoals': 0.0438, 'expectedAssists': 0.00621414, 'passPerc': 0.56, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'correia-thierry', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdcf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 41, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0784616, 'passPerc': 0.7884615384615384, 'longballsPerc': 0.36363636363636365}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fdd1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 16, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 86, 'touches': 30, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.216101, 'passPerc': 0.9411764705882353, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fddd'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 18, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 2, 'totalTackle': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 2, 'goalsPrevented': -0.5565, 'passPerc': 0.9, 'longballsPerc': 0.8333333333333334}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fdde'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 3, 'totalTackle': 6, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 6, 'expectedGoals': 0.0135, 'keyPass': 1, 'expectedAssists': 0.0823438, 'passPerc': 0.9285714285714286, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fddf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 39, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 2, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 5, 'expectedGoals': 0.2216, 'expectedAssists': 0.00584972, 'passPerc': 0.9069767441860465, 'longballsPerc': 0.75}, 'team': 'Villarreal', 'name': 'eric-bailly', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fde0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 48, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 4, 'expectedAssists': 0.0555119, 'passPerc': 0.9411764705882353, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fde1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 22, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 87, 'touches': 46, 'possessionLostCtrl': 12, 'expectedGoals': 0.1243, 'keyPass': 1, 'expectedAssists': 0.199374, 'passPerc': 0.7857142857142857, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fde2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 2, 'duelWon': 8, 'totalContest': 5, 'wonContest': 4, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 77, 'touches': 56, 'possessionLostCtrl': 12, 'expectedGoals': 0.1778, 'keyPass': 1, 'expectedAssists': 0.202052, 'passPerc': 0.8181818181818182, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'ilias-akhomach', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fde3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 60, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 2, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0501843, 'passPerc': 0.8955223880597015, 'longballsPerc': 0.8}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fde4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 38, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 77, 'touches': 58, 'possessionLostCtrl': 9, 'expectedGoals': 0.048, 'expectedAssists': 0.0339906, 'passPerc': 0.8837209302325582, 'longballsPerc': 0.7142857142857143}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fde6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 24, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'goals': 1, 'wasFouled': 2, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 88, 'touches': 44, 'possessionLostCtrl': 10, 'expectedGoals': 0.5518, 'keyPass': 1, 'expectedAssists': 0.0520355, 'passPerc': 0.8, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'nicolas-pepe', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fde7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 7, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'fouls': 2, 'totalOffside': 4, 'minutesPlayed': 90, 'touches': 18, 'possessionLostCtrl': 6, 'expectedGoals': 0.5243, 'keyPass': 3, 'expectedAssists': 0.210373, 'passPerc': 0.7, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'thierno-barry', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fdf2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 36, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 1, 'totalClearance': 1, 'penaltyConceded': 1, 'fouls': 1, 'savedShotsFromInsideTheBox': 3, 'penaltySave': 1, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 4, 'goalsPrevented': -0.6946, 'passPerc': 0.9230769230769231, 'longballsPerc': 0.625}, 'team': 'Las Palmas', 'name': 'dinko-horkas', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdf3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 63, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 5, 'expectedGoals': 0.0526, 'passPerc': 0.9264705882352942, 'longballsPerc': 0.25}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdf4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 83, 'accuratePass': 82, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 2, 'passPerc': 0.9879518072289156, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'juanma-herzog', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdf5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 81, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 9, 'expectedAssists': 0.00703973, 'passPerc': 0.9204545454545454, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'alex-munoz', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdf6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 34, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 78, 'touches': 61, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0598969, 'passPerc': 0.8095238095238095, 'longballsPerc': 0.25}, 'team': 'Las Palmas', 'name': 'benito-ramirez', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdf7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 32, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 4, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'wasFouled': 2, 'minutesPlayed': 77, 'touches': 51, 'possessionLostCtrl': 10, 'expectedGoals': 0.0184, 'keyPass': 2, 'expectedAssists': 0.168716, 'passPerc': 0.8648648648648649, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'adnan-januzaj', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdf8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 52, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'fouls': 3, 'minutesPlayed': 86, 'touches': 61, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0136036, 'passPerc': 0.9122807017543859, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'dario-essugo', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdfa'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 38, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 9, 'expectedGoals': 0.0483, 'keyPass': 3, 'expectedAssists': 0.729979, 'passPerc': 0.926829268292683, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fdfc'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 13, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 14, 'expectedGoals': 0.6758, 'expectedAssists': 0.00716704, 'passPerc': 0.65, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'fabio-silva', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe09'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 6, 'goalsPrevented': -0.4905, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.4}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe0b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 52, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 5, 'totalClearance': 6, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 5, 'expectedAssists': 0.00656668, 'passPerc': 0.9122807017543859, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'robin-le-normand', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe0c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 58, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'duelWon': 4, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 5, 'passPerc': 0.9354838709677419, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe0d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 47, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'totalContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 68, 'possessionLostCtrl': 11, 'expectedAssists': 0.00851957, 'passPerc': 0.8392857142857143, 'longballsPerc': 0.7142857142857143}, 'team': 'Atlético Madrid', 'name': 'reinildo-mandava', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe0e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 56, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 18, 'keyPass': 2, 'expectedAssists': 0.120006, 'passPerc': 0.8615384615384616, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'rodrigo-de-paul', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe0f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 44, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'lastManTackle': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 9, 'expectedGoals': 0.0318, 'keyPass': 1, 'expectedAssists': 0.0473177, 'passPerc': 0.8979591836734694, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe11'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 23, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'totalContest': 5, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 40, 'possessionLostCtrl': 9, 'expectedGoals': 0.1138, 'keyPass': 2, 'expectedAssists': 0.201268, 'passPerc': 0.8846153846153846, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'julian-alvarez', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe12'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 45, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 17, 'expectedGoals': 0.0851, 'keyPass': 2, 'expectedAssists': 0.0844278, 'passPerc': 0.8653846153846154, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe1f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 21, 'totalLongBalls': 15, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 11, 'goalsPrevented': 0.5567, 'passPerc': 0.6774193548387096, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe20'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 39, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 12, 'expectedGoals': 0.2388, 'keyPass': 1, 'expectedAssists': 0.0474652, 'passPerc': 0.8666666666666667, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'daniel-carvajal', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe21'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 51, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 6, 'outfielderBlock': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 4, 'passPerc': 0.9272727272727272, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe22'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 49, 'totalLongBalls': 13, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 13, 'expectedGoals': 0.0281, 'keyPass': 1, 'expectedAssists': 0.010869, 'passPerc': 0.8166666666666667, 'longballsPerc': 0.5384615384615384}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe23'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 44, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 2, 'dispossessed': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 6, 'expectedAssists': 0.00828347, 'passPerc': 0.9166666666666666, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'ferland-mendy', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe24'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 58, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 5, 'expectedGoals': 0.0562, 'keyPass': 1, 'expectedAssists': 0.0421467, 'passPerc': 0.9206349206349206, 'longballsPerc': 0.8333333333333334}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe25'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 58, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 86, 'touches': 72, 'possessionLostCtrl': 8, 'keyPass': 3, 'expectedAssists': 0.446949, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'luka-modric', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe26'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 56, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 4, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 10, 'expectedGoals': 0.0578, 'expectedAssists': 0.0200535, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe27'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 55, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 4, 'expectedGoals': 0.195, 'expectedAssists': 0.0225598, 'passPerc': 0.9821428571428571, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe28'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 28, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'minutesPlayed': 89, 'touches': 44, 'possessionLostCtrl': 9, 'expectedGoals': 0.0743, 'keyPass': 2, 'expectedAssists': 0.0692558, 'passPerc': 0.9032258064516129, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'rodrygo', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe29'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 24, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 87, 'touches': 48, 'possessionLostCtrl': 14, 'expectedGoals': 0.0645, 'keyPass': 2, 'expectedAssists': 0.33149, 'passPerc': 0.8, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe33'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 5, 'goalsPrevented': 0.4711, 'passPerc': 0.84375, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe34'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 29, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelWon': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.256852, 'passPerc': 0.8529411764705882, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'hector-bellerin', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe35'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 51, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 7, 'expectedGoals': 0.0174, 'keyPass': 1, 'expectedAssists': 0.122553, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.4}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe36'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 48, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 7, 'expectedGoals': 0.0166, 'expectedAssists': 0.157285, 'passPerc': 0.8727272727272727, 'longballsPerc': 0.6}, 'team': 'Real Betis', 'name': 'natan', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe37'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 32, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 10, 'expectedAssists': 0.0128299, 'passPerc': 0.8421052631578947, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'ricardo-rodriguez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe38'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 38, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 79, 'touches': 48, 'possessionLostCtrl': 3, 'expectedGoals': 0.1271, 'expectedAssists': 0.0346972, 'passPerc': 0.95, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe39'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 42, 'totalLongBalls': 5, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 1, 'dispossessed': 1, 'blockedScoringAttempt': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 78, 'touches': 61, 'possessionLostCtrl': 12, 'expectedGoals': 0.0497, 'keyPass': 2, 'expectedAssists': 0.0455627, 'passPerc': 0.8235294117647058, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'marc-roca', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe3b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 3, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 4, 'goals': 1, 'wasFouled': 7, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 19, 'expectedGoals': 0.3644, 'keyPass': 4, 'expectedAssists': 0.595155, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'lo-celso-giovani', 'rating': 9, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe3c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 2, 'duelLost': 11, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 5, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 3, 'wasFouled': 4, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 88, 'touches': 52, 'possessionLostCtrl': 22, 'expectedGoals': 1.2296, 'keyPass': 5, 'penaltyMiss': 1, 'expectedAssists': 0.199829, 'passPerc': 0.7916666666666666, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fe49'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 20, 'totalLongBalls': 15, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 3, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 6, 'penaltySave': 1, 'saves': 10, 'punches': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 11, 'goalsPrevented': 1.1711, 'passPerc': 0.6451612903225806, 'longballsPerc': 0.26666666666666666}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 9.5, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe4a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 12, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 6, 'interceptionWon': 4, 'totalTackle': 8, 'penaltyConceded': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 10, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe4b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 50, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 1, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 2, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 6, 'expectedGoals': 0.0261, 'passPerc': 0.8928571428571429, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'sergi-gomez', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe4c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 52, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 9, 'passPerc': 0.8524590163934426, 'longballsPerc': 0.14285714285714285}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe4d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 2, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 87, 'touches': 56, 'possessionLostCtrl': 9, 'expectedGoals': 0.3121, 'keyPass': 1, 'expectedAssists': 0.0600355, 'passPerc': 0.8285714285714286, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe4f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 39, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 9, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 6, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 9, 'expectedGoals': 0.0273, 'keyPass': 1, 'expectedAssists': 0.0106714, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'jose-gragera', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe50'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 41, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 87, 'touches': 58, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0493819, 'passPerc': 0.8367346938775511, 'longballsPerc': 0.6}, 'team': 'Espanyol', 'name': 'pol-lozano', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe52'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 2, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 11, 'expectedGoals': 0.0403, 'keyPass': 1, 'expectedAssists': 0.0192529, 'passPerc': 0.76, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fe60'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 14, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'fouls': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 82, 'touches': 29, 'possessionLostCtrl': 11, 'goalsPrevented': 0.0583, 'passPerc': 0.6086956521739131, 'longballsPerc': 0.25}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe62'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'hitWoodwork': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 7, 'expectedAssists': 0.00512791, 'passPerc': 0.8, 'longballsPerc': 0.42857142857142855}, 'team': 'Athletic Club', 'name': 'unai-nunez', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe63'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 31, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 10, 'passPerc': 0.7560975609756098, 'longballsPerc': 0.4}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe64'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 22, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.00768451, 'passPerc': 0.6470588235294118, 'longballsPerc': 0.375}, 'team': 'Athletic Club', 'name': 'inigo-lekue', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe65'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 11, 'duelWon': 7, 'challengeLost': 3, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 12, 'expectedGoals': 0.0921, 'expectedAssists': 0.0121582, 'passPerc': 0.8285714285714286, 'longballsPerc': 0.8}, 'team': 'Athletic Club', 'name': 'mikel-jauregizar', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe67'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 17, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 1, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 85, 'touches': 39, 'possessionLostCtrl': 10, 'expectedGoals': 0.1489, 'keyPass': 4, 'expectedAssists': 0.459984, 'passPerc': 0.9444444444444444, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe6a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 9, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'bigChanceMissed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 13, 'expectedGoals': 0.938, 'keyPass': 1, 'expectedAssists': 0.0241599, 'passPerc': 0.6923076923076923, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe76'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 27, 'totalLongBalls': 17, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 15, 'goalsPrevented': 0.3512, 'passPerc': 0.6428571428571429, 'longballsPerc': 0.17647058823529413}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe77'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 9, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 7, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 78, 'possessionLostCtrl': 13, 'expectedGoals': 0.0177, 'keyPass': 2, 'expectedAssists': 0.0131091, 'passPerc': 0.8163265306122449, 'longballsPerc': 0.4}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe78'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 73, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'lastManTackle': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 14, 'expectedAssists': 0.0119056, 'passPerc': 0.8690476190476191, 'longballsPerc': 0.3}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe79'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 63, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 6, 'interceptionWon': 4, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 4, 'expectedAssists': 0.0112894, 'passPerc': 0.9402985074626866, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'tanguy-nianzou', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe7b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 45, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 86, 'touches': 70, 'possessionLostCtrl': 15, 'expectedGoals': 0.0637, 'expectedAssists': 0.0332067, 'passPerc': 0.7758620689655172, 'longballsPerc': 0.2857142857142857}, 'team': 'Sevilla', 'name': 'lucien-agoume', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe7c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 44, 'totalLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 4, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 4, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 14, 'expectedGoals': 0.0503, 'keyPass': 1, 'expectedAssists': 0.0399395, 'passPerc': 0.7586206896551724, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe7d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 25, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 3, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 12, 'expectedGoals': 0.6376, 'keyPass': 2, 'expectedAssists': 0.0479777, 'passPerc': 0.78125, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe7e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 15, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'duelLost': 10, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 28, 'possessionLostCtrl': 5, 'expectedGoals': 0.079, 'expectedAssists': 0.0124642, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'peque-fernandez', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe7f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 5, 'totalContest': 8, 'wonContest': 6, 'onTargetScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 18, 'expectedGoals': 0.1658, 'expectedAssists': 0.0434676, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6666666666666666}, 'team': 'Sevilla', 'name': 'chidera-ejuke', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe8d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 2, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 5, 'goalsPrevented': 0.5204, 'passPerc': 0.75, 'longballsPerc': 0.16666666666666666}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe8e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 57, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 2, 'expectedAssists': 0.00719595, 'passPerc': 0.9661016949152542, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe8f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 63, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 7, 'expectedGoals': 0.0895, 'expectedAssists': 0.00774485, 'passPerc': 0.9, 'longballsPerc': 0.3333333333333333}, 'team': 'Celta Vigo', 'name': 'carlos-dominguez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe90'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 76, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 11, 'expectedGoals': 0.0434, 'expectedAssists': 0.0947942, 'passPerc': 0.9047619047619048, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe93'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 61, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 4, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 12, 'expectedGoals': 0.0181, 'keyPass': 2, 'expectedAssists': 0.230104, 'passPerc': 0.8714285714285714, 'longballsPerc': 0.8333333333333334}, 'team': 'Celta Vigo', 'name': 'damian-rodriguez', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fe94'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 54, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.16599, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fea4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 36, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 7, 'goalsPrevented': -0.44, 'passPerc': 0.8372093023255814, 'longballsPerc': 0.36363636363636365}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fea5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 56, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 15, 'expectedAssists': 0.0163496, 'passPerc': 0.835820895522388, 'longballsPerc': 0.4}, 'team': 'Girona FC', 'name': 'alejandro-frances', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fea7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 83, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 2, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 103, 'possessionLostCtrl': 8, 'expectedGoals': 0.0335, 'expectedAssists': 0.00992107, 'passPerc': 0.9431818181818182, 'longballsPerc': 0.3333333333333333}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fea8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 51, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0554862, 'passPerc': 0.9444444444444444, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32fea9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 68, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 8, 'expectedAssists': 0.0339332, 'passPerc': 0.9444444444444444, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32feab'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 34, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 4, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 8, 'expectedGoals': 0.0666, 'keyPass': 4, 'expectedAssists': 0.532982, 'passPerc': 0.8947368421052632, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'viktor-tsygankov', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32feaf'), 'position': 'M', 'substitute': True, 'statistics': {'totalPass': 34, 'accuratePass': 29, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 5, 'challengeLost': 1, 'totalClearance': 3, 'fouls': 3, 'minutesPlayed': 76, 'touches': 42, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.141124, 'passPerc': 0.8529411764705882, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'donny-van-de-beek', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32febb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 8, 'totalLongBalls': 21, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 3, 'errorLeadToAGoal': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 15, 'goalsPrevented': -0.5923, 'passPerc': 0.36363636363636365, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 6.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32febc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 5, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 35, 'possessionLostCtrl': 17, 'expectedGoals': 0.0217, 'expectedAssists': 0.0377265, 'passPerc': 0.4166666666666667, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32febd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 7, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 2, 'totalClearance': 10, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 7, 'passPerc': 0.5, 'longballsPerc': 0.375}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32febe'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 9, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 19, 'possessionLostCtrl': 4, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.6}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32febf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 84, 'touches': 35, 'possessionLostCtrl': 11, 'expectedGoals': 0.0156, 'keyPass': 1, 'expectedAssists': 0.0219603, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'juan-cruz', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fec0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 1, 'duelLost': 10, 'duelWon': 1, 'challengeLost': 4, 'dispossessed': 2, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'outfielderBlock': 1, 'interceptionWon': 6, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 12, 'expectedGoals': 0.0639, 'keyPass': 1, 'expectedAssists': 0.116716, 'passPerc': 0.65, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'pablo-ibanez-lumbreras', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fec1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 24, 'totalLongBalls': 13, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 6, 'duelLost': 7, 'duelWon': 12, 'dispossessed': 3, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 6, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.0742275, 'passPerc': 0.6153846153846154, 'longballsPerc': 0.6153846153846154}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fec2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 24, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0177235, 'passPerc': 0.8, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fec4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 8, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 3, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 2, 'wasFouled': 1, 'fouls': 1, 'penaltyWon': 1, 'totalOffside': 3, 'minutesPlayed': 77, 'touches': 25, 'possessionLostCtrl': 8, 'expectedGoals': 0.9879, 'passPerc': 0.8888888888888888, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fec5'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 31, 'possessionLostCtrl': 11, 'expectedGoals': 0.9693, 'keyPass': 1, 'expectedAssists': 0.350489, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fed2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 4, 'accurateKeeperSweeper': 4, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 5, 'goalsPrevented': -1.109, 'passPerc': 0.8, 'longballsPerc': 0.375}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fed3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 62, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 7, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 3, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 99, 'possessionLostCtrl': 15, 'expectedGoals': 0.0332, 'keyPass': 2, 'expectedAssists': 0.334354, 'passPerc': 0.9117647058823529, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fed4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 90, 'accuratePass': 86, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 1, 'totalClearance': 4, 'interceptionWon': 1, 'penaltyConceded': 1, 'fouls': 1, 'minutesPlayed': 85, 'touches': 95, 'possessionLostCtrl': 4, 'expectedAssists': 0.016704, 'passPerc': 0.9555555555555556, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'sergi-dominguez', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fed5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 97, 'accuratePass': 88, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0887129, 'passPerc': 0.9072164948453608, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fed8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 70, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 8, 'expectedGoals': 0.0133, 'expectedAssists': 0.292793, 'passPerc': 0.9210526315789473, 'longballsPerc': 0.8}, 'team': 'Barcelona', 'name': 'eric-garcia', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fed9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 63, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 98, 'possessionLostCtrl': 17, 'expectedAssists': 0.0836222, 'passPerc': 0.84, 'longballsPerc': 0.4444444444444444}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32feda'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 12, 'expectedGoals': 0.2337, 'keyPass': 1, 'expectedAssists': 0.0674833, 'passPerc': 0.8387096774193549, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'ferran-torres', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32fee9'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 18, 'accurateLongBalls': 12, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 7, 'goalsPrevented': 0.1614, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32feea'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 38, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelWon': 13, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 11, 'minutesPlayed': 85, 'touches': 81, 'possessionLostCtrl': 20, 'expectedGoals': 0.0857, 'expectedAssists': 0.00521059, 'passPerc': 0.8260869565217391, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32feeb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 48, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 4, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 11, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32feec'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 68, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 9, 'expectedGoals': 0.473, 'expectedAssists': 0.00835215, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32feed'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 45, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'bigChanceCreated': 1, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.617836, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32feee'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 49, 'totalLongBalls': 10, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'totalTackle': 6, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0207797, 'passPerc': 0.8166666666666667, 'longballsPerc': 0.6}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32feef'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 4, 'dispossessed': 4, 'totalContest': 5, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'goals': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 85, 'touches': 51, 'possessionLostCtrl': 16, 'expectedGoals': 0.7562, 'keyPass': 1, 'expectedAssists': 0.0688755, 'passPerc': 0.84375, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fef0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 24, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'totalContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 34, 'possessionLostCtrl': 5, 'keyPass': 1, 'expectedAssists': 0.130166, 'passPerc': 0.9230769230769231, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32fef1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 53, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 2, 'totalCross': 6, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 15, 'keyPass': 6, 'expectedAssists': 1.04163, 'passPerc': 0.8983050847457628, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 9.2, 'match_result': 'W'}
{'_id': ObjectId('6764877083201ea30d32ff00'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 18, 'totalLongBalls': 11, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 10, 'goalsPrevented': -0.1149, 'passPerc': 0.6428571428571429, 'longballsPerc': 0.09090909090909091}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff01'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 22, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 4, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 15, 'expectedGoals': 0.0082, 'expectedAssists': 0.0232481, 'passPerc': 0.7857142857142857, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'dimitri-foulquier', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff02'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 31, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 4, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 11, 'expectedGoals': 0.5876, 'passPerc': 0.7380952380952381, 'longballsPerc': 0.25}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff03'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 32, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 8, 'expectedGoals': 0.0241, 'expectedAssists': 0.0110342, 'passPerc': 0.8, 'longballsPerc': 0.375}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff06'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 77, 'touches': 50, 'possessionLostCtrl': 10, 'expectedGoals': 0.0178, 'keyPass': 1, 'expectedAssists': 0.117455, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'hugo-guillamon', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff07'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'fouls': 2, 'minutesPlayed': 77, 'touches': 46, 'possessionLostCtrl': 12, 'expectedGoals': 0.0202, 'keyPass': 2, 'expectedAssists': 0.196684, 'passPerc': 0.7567567567567568, 'longballsPerc': 0.42857142857142855}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff08'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 14, 'expectedGoals': 0.0222, 'keyPass': 1, 'expectedAssists': 0.0075471, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff0a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'duelLost': 11, 'duelWon': 3, 'dispossessed': 4, 'totalContest': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 10, 'keyPass': 2, 'expectedAssists': 0.0153027, 'passPerc': 0.85, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877083201ea30d32ff16'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 20, 'totalLongBalls': 16, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 10, 'goalsPrevented': 0.0875, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.375}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff17'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 4, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 7, 'expectedGoals': 0.0904, 'keyPass': 1, 'expectedAssists': 0.016067, 'passPerc': 0.8604651162790697, 'longballsPerc': 0.75}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff18'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 41, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 5, 'expectedGoals': 0.0161, 'expectedAssists': 0.014283, 'passPerc': 0.8913043478260869, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff19'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 52, 'totalLongBalls': 13, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 5, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 13, 'passPerc': 0.8125, 'longballsPerc': 0.3076923076923077}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff1a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 8, 'keyPass': 2, 'expectedAssists': 0.0403177, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.4}, 'team': 'Rayo Vallecano', 'name': 'ivan-balliu', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff1b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 46, 'totalLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 10, 'expectedGoals': 0.0398, 'keyPass': 1, 'expectedAssists': 0.0127528, 'passPerc': 0.8518518518518519, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'unai-lopez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff1d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 16, 'goalAssist': 0, 'duelLost': 14, 'duelWon': 4, 'challengeLost': 4, 'dispossessed': 4, 'totalContest': 5, 'wonContest': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 80, 'touches': 45, 'possessionLostCtrl': 14, 'expectedGoals': 0.1974, 'keyPass': 2, 'expectedAssists': 0.0218072, 'passPerc': 0.8888888888888888, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff2d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 13, 'totalLongBalls': 22, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 14, 'goalsPrevented': 0.3847, 'passPerc': 0.48148148148148145, 'longballsPerc': 0.36363636363636365}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff2e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 30, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 13, 'expectedGoals': 0.0152, 'keyPass': 1, 'expectedAssists': 0.137351, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff2f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 53, 'totalLongBalls': 18, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'interceptionWon': 4, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 16, 'expectedGoals': 0.3638, 'expectedAssists': 0.00822312, 'passPerc': 0.7794117647058824, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff30'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 23, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'totalClearance': 6, 'outfielderBlock': 4, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 1, 'passPerc': 0.9583333333333334, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff31'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 19, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.100256, 'passPerc': 0.8636363636363636, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff33'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 45, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.179917, 'passPerc': 0.7377049180327869, 'longballsPerc': 0.375}, 'team': 'Leganés', 'name': 'renato-tapia', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff34'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 20, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 2, 'totalContest': 7, 'wonContest': 5, 'onTargetScoringAttempt': 2, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 85, 'touches': 47, 'possessionLostCtrl': 15, 'expectedGoals': 0.2198, 'expectedAssists': 0.0483461, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'juan-cruz', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764877083201ea30d32ff35'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 43, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 3, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'errorLeadToAGoal': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 17, 'expectedGoals': 0.028, 'keyPass': 3, 'expectedAssists': 0.136872, 'passPerc': 0.8269230769230769, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'roberto-lopez', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ff43'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 9, 'totalLongBalls': 22, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalClearance': 4, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 13, 'expectedAssists': 0.016362, 'goalsPrevented': 0.1777, 'passPerc': 0.4090909090909091, 'longballsPerc': 0.4090909090909091}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff44'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 8, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0689173, 'passPerc': 0.5333333333333333, 'longballsPerc': 0.3333333333333333}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff45'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 6, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 8, 'expectedGoals': 0.2005, 'passPerc': 0.6190476190476191, 'longballsPerc': 0.3333333333333333}, 'team': 'Getafe', 'name': 'juan-berrocal', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff46'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 13, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 7, 'duelLost': 9, 'duelWon': 10, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 8, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 13, 'expectedGoals': 0.0329, 'keyPass': 1, 'expectedAssists': 0.0488593, 'passPerc': 0.5652173913043478, 'longballsPerc': 0.4}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff47'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 9, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 7, 'dispossessed': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 20, 'expectedGoals': 0.1544, 'keyPass': 1, 'expectedAssists': 0.163314, 'passPerc': 0.45, 'longballsPerc': 0.25}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff48'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 8, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 9, 'expectedGoals': 0.3479, 'keyPass': 1, 'expectedAssists': 0.23242, 'passPerc': 0.5714285714285714, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'carles-perez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff49'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 8, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 5, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 28, 'possessionLostCtrl': 12, 'expectedGoals': 0.0322, 'passPerc': 0.47058823529411764, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff4a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 4, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 8, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 6, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 17, 'expectedGoals': 0.7884, 'keyPass': 4, 'expectedAssists': 0.211156, 'passPerc': 0.6551724137931034, 'longballsPerc': 0.14285714285714285}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff4c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 8, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 10, 'duelWon': 16, 'totalContest': 7, 'wonContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 9, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 44, 'possessionLostCtrl': 16, 'expectedGoals': 0.4649, 'passPerc': 0.5333333333333333, 'longballsPerc': 0.6666666666666666}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff5a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 17, 'totalLongBalls': 26, 'accurateLongBalls': 11, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 15, 'goalsPrevented': 0.364, 'passPerc': 0.53125, 'longballsPerc': 0.4230769230769231}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff5b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 10, 'totalLongBalls': 11, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 7, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.168961, 'passPerc': 0.4, 'longballsPerc': 0.18181818181818182}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff5e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 7, 'duelLost': 6, 'duelWon': 14, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 4, 'fouls': 3, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 10, 'expectedAssists': 0.015846, 'passPerc': 0.7916666666666666, 'longballsPerc': 0.6666666666666666}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff5f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 20, 'totalLongBalls': 15, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 22, 'expectedGoals': 0.2156, 'expectedAssists': 0.0189769, 'passPerc': 0.5714285714285714, 'longballsPerc': 0.26666666666666666}, 'team': 'Deportivo Alavés', 'name': 'joan-jordan', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff61'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 6, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 15, 'expectedGoals': 0.1224, 'expectedAssists': 0.126261, 'passPerc': 0.46153846153846156, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff62'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 7, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 11, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 3, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 23, 'expectedGoals': 0.1375, 'expectedAssists': 0.0278136, 'passPerc': 0.3888888888888889, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'stoichkov', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff71'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 4, 'goalsPrevented': 0.7926, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff73'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 47, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 6, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 11, 'expectedAssists': 0.00503872, 'passPerc': 0.8245614035087719, 'longballsPerc': 0.25}, 'team': 'Real Valladolid', 'name': 'abdulay-juma-bah', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff75'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 33, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalContest': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'errorLeadToAGoal': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 14, 'keyPass': 2, 'expectedAssists': 0.132902, 'passPerc': 0.8918918918918919, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff77'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 36, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 8, 'challengeLost': 3, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 9, 'expectedGoals': 0.1026, 'expectedAssists': 0.00992573, 'passPerc': 0.8372093023255814, 'longballsPerc': 0.7777777777777778}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff79'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 8, 'duelWon': 2, 'challengeLost': 4, 'dispossessed': 1, 'totalContest': 3, 'blockedScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 14, 'expectedGoals': 0.154, 'keyPass': 2, 'expectedAssists': 0.09308, 'passPerc': 0.76, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff7a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 4, 'duelLost': 11, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 3, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 11, 'expectedGoals': 0.1895, 'keyPass': 2, 'expectedAssists': 0.102825, 'passPerc': 0.65, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'juanmi-latasa', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ff87'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 16, 'totalLongBalls': 26, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 20, 'goalsPrevented': -0.124, 'passPerc': 0.4444444444444444, 'longballsPerc': 0.23076923076923078}, 'team': 'Mallorca', 'name': 'leo-roman', 'rating': 5.9, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff88'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 28, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 9, 'totalContest': 5, 'wonContest': 4, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 16, 'expectedGoals': 0.0839, 'keyPass': 2, 'expectedAssists': 0.120567, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff89'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 5, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 7, 'expectedGoals': 0.0393, 'keyPass': 1, 'passPerc': 0.85, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff8a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 40, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 8, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 11, 'expectedGoals': 0.2417, 'passPerc': 0.8163265306122449, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'jose-copete', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff8b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0695417, 'passPerc': 0.85, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff8c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 86, 'touches': 46, 'possessionLostCtrl': 10, 'expectedGoals': 0.0215, 'expectedAssists': 0.0251084, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'robert-navarro', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff8e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 50, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 8, 'challengeLost': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 12, 'expectedGoals': 0.0945, 'expectedAssists': 0.0214391, 'passPerc': 0.819672131147541, 'longballsPerc': 0.5555555555555556}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff8f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'wasFouled': 1, 'minutesPlayed': 76, 'touches': 53, 'possessionLostCtrl': 19, 'keyPass': 4, 'expectedAssists': 0.198228, 'passPerc': 0.8055555555555556, 'longballsPerc': 0.5714285714285714}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff90'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 2, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 76, 'touches': 30, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.304126, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'dani-rodriguez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff91'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 8, 'accuratePass': 7, 'goalAssist': 0, 'aerialLost': 7, 'aerialWon': 2, 'duelLost': 10, 'duelWon': 3, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'goals': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 22, 'possessionLostCtrl': 6, 'expectedGoals': 0.9871, 'keyPass': 1, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'cyle-larin', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ff9e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 20, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 1, 'goalsPrevented': 0.0261, 'passPerc': 0.9523809523809523, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 104, 'accuratePass': 100, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 3, 'totalClearance': 2, 'outfielderBlock': 2, 'interceptionWon': 6, 'fouls': 1, 'minutesPlayed': 90, 'touches': 115, 'possessionLostCtrl': 4, 'expectedAssists': 0.0171081, 'passPerc': 0.9615384615384616, 'longballsPerc': 0.8}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 105, 'accuratePass': 94, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 4, 'interceptionWon': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 116, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0418414, 'passPerc': 0.8952380952380953, 'longballsPerc': 0.4444444444444444}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 28, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 6, 'keyPass': 3, 'expectedAssists': 0.876434, 'passPerc': 0.9333333333333333, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'sergio-carreira', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 80, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.170451, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 82, 'accuratePass': 77, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 2, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'minutesPlayed': 84, 'touches': 87, 'possessionLostCtrl': 8, 'expectedGoals': 0.0831, 'expectedAssists': 0.0399075, 'passPerc': 0.9390243902439024, 'longballsPerc': 0.75}, 'team': 'Celta Vigo', 'name': 'hugo-sotelo', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 44, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 22, 'expectedAssists': 0.0236407, 'passPerc': 0.7857142857142857, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 19, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 84, 'touches': 45, 'possessionLostCtrl': 15, 'expectedGoals': 0.2169, 'expectedAssists': 0.0728118, 'passPerc': 0.6333333333333333, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffa7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 11, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 76, 'touches': 34, 'possessionLostCtrl': 11, 'expectedGoals': 0.4846, 'keyPass': 1, 'expectedAssists': 0.0275063, 'passPerc': 0.6470588235294118, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'borja-iglesias', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffb5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 11, 'accurateLongBalls': 7, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 4, 'goalsPrevented': 1.0915, 'passPerc': 0.8, 'longballsPerc': 0.6363636363636364}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffb6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 42, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 3, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 84, 'touches': 67, 'possessionLostCtrl': 16, 'expectedGoals': 0.0153, 'expectedAssists': 0.0218912, 'passPerc': 0.7924528301886793, 'longballsPerc': 0.2}, 'team': 'Atlético Madrid', 'name': 'nahuel-molina', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffb7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 51, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 6, 'expectedGoals': 0.0859, 'expectedAssists': 0.00809943, 'passPerc': 0.9272727272727272, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'robin-le-normand', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffb8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 51, 'totalLongBalls': 14, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 4, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 10, 'expectedAssists': 0.0273202, 'passPerc': 0.8360655737704918, 'longballsPerc': 0.6428571428571429}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffb9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 7, 'expectedAssists': 0.0052808, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.3333333333333333}, 'team': 'Atlético Madrid', 'name': 'reinildo-mandava', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffba'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 39, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 6, 'expectedAssists': 0.00868275, 'passPerc': 0.8863636363636364, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffbc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 36, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 8, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 6, 'keyPass': 2, 'expectedAssists': 0.0289141, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'conor-gallagher', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffbe'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 35, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 7, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 24, 'expectedGoals': 0.0573, 'keyPass': 4, 'expectedAssists': 0.657055, 'passPerc': 0.6730769230769231, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d32ffcb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 47, 'totalLongBalls': 16, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 10, 'goalsPrevented': 0.0612, 'passPerc': 0.8245614035087719, 'longballsPerc': 0.375}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffcc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 24, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'bigChanceCreated': 1, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 6, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 13, 'keyPass': 2, 'expectedAssists': 0.554177, 'passPerc': 0.75, 'longballsPerc': 0.42857142857142855}, 'team': 'Las Palmas', 'name': 'viti-rozada', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffcd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 49, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 8, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 9, 'passPerc': 0.8448275862068966, 'longballsPerc': 0.4}, 'team': 'Las Palmas', 'name': 'juanma-herzog', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffce'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 71, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 4, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 5, 'passPerc': 0.9466666666666667, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alex-munoz', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffd2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 42, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 12, 'challengeLost': 2, 'dispossessed': 4, 'shotOffTarget': 1, 'totalClearance': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 14, 'expectedGoals': 0.0311, 'expectedAssists': 0.00656732, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'loiodice-enzo', 'rating': 6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffd3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 43, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 13, 'expectedGoals': 0.0178, 'expectedAssists': 0.0186004, 'passPerc': 0.7962962962962963, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffd4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 47, 'possessionLostCtrl': 12, 'expectedGoals': 0.3602, 'keyPass': 1, 'expectedAssists': 0.0374719, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'fabio-silva', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffd5'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 37, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 83, 'touches': 61, 'possessionLostCtrl': 14, 'expectedGoals': 0.5216, 'keyPass': 2, 'expectedAssists': 0.112307, 'passPerc': 0.8604651162790697, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffe2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 1, 'goalsPrevented': 0.0408, 'passPerc': 0.9666666666666667, 'longballsPerc': 0.8}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffe3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 41, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 8, 'keyPass': 2, 'expectedAssists': 0.0975082, 'passPerc': 0.9111111111111111, 'longballsPerc': 0.6}, 'team': 'Real Betis', 'name': 'aitor-ruibal', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffe4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 54, 'totalLongBalls': 9, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 7, 'duelLost': 1, 'duelWon': 9, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 15, 'expectedAssists': 0.00648901, 'passPerc': 0.782608695652174, 'longballsPerc': 0.1111111111111111}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffe5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 44, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'bigChanceCreated': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 6, 'keyPass': 2, 'expectedAssists': 0.492846, 'passPerc': 0.8979591836734694, 'longballsPerc': 0.8}, 'team': 'Real Betis', 'name': 'natan', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffe6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 3, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 11, 'expectedGoals': 0.0119, 'expectedAssists': 0.108552, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffe7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 29, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 4, 'totalContest': 2, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 16, 'expectedGoals': 0.3727, 'expectedAssists': 0.016315, 'passPerc': 0.7837837837837838, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'johnny', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffe9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 39, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 24, 'expectedGoals': 0.0475, 'keyPass': 1, 'expectedAssists': 0.572448, 'passPerc': 0.7358490566037735, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffea'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 3, 'duelLost': 5, 'duelWon': 13, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalTackle': 5, 'wasFouled': 6, 'minutesPlayed': 82, 'touches': 71, 'possessionLostCtrl': 11, 'expectedGoals': 0.6246, 'keyPass': 3, 'expectedAssists': 0.368497, 'passPerc': 0.9090909090909091, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'lo-celso-giovani', 'rating': 9, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32ffeb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 7, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'wasFouled': 5, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 45, 'possessionLostCtrl': 17, 'expectedGoals': 0.2104, 'expectedAssists': 0.0486761, 'passPerc': 0.6521739130434783, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 6.1, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d32fff7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 7, 'goalsPrevented': -0.5675, 'passPerc': 0.7666666666666667, 'longballsPerc': 0.3}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32fff8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 67, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 5, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.194141, 'passPerc': 0.8933333333333333, 'longballsPerc': 0.5555555555555556}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32fff9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 72, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 90, 'possessionLostCtrl': 4, 'expectedAssists': 0.0110763, 'passPerc': 0.96, 'longballsPerc': 0.8}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32fffd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 41, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'totalContest': 5, 'wonContest': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 8, 'expectedAssists': 0.00592891, 'passPerc': 0.9318181818181818, 'longballsPerc': 0.8}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d32ffff'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 20, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 80, 'touches': 40, 'possessionLostCtrl': 11, 'expectedGoals': 0.067, 'expectedAssists': 0.0133937, 'passPerc': 0.8695652173913043, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d330000'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 10, 'expectedGoals': 0.2151, 'keyPass': 2, 'expectedAssists': 0.0284526, 'passPerc': 0.7391304347826086, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33000e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 18, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'bigChanceCreated': 1, 'totalClearance': 1, 'goodHighClaim': 5, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 3, 'keyPass': 1, 'goalsPrevented': -0.5635, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d33000f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 44, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0101468, 'passPerc': 0.9565217391304348, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330012'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 9, 'expectedGoals': 0.0196, 'keyPass': 1, 'expectedAssists': 0.00735351, 'passPerc': 0.8076923076923077, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330013'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 11, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 4, 'minutesPlayed': 80, 'touches': 47, 'possessionLostCtrl': 13, 'expectedGoals': 0.0407, 'keyPass': 3, 'expectedAssists': 0.323827, 'passPerc': 0.8181818181818182, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'ilias-akhomach', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330015'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 44, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 11, 'expectedGoals': 0.0257, 'keyPass': 3, 'expectedAssists': 0.0572269, 'passPerc': 0.8301886792452831, 'longballsPerc': 0.6}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330018'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 3, 'shotOffTarget': 4, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 13, 'expectedGoals': 0.9858, 'keyPass': 1, 'expectedAssists': 0.012708, 'passPerc': 0.2727272727272727, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'thierno-barry', 'rating': 5.8, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330022'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 30, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 4, 'accurateKeeperSweeper': 4, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 5, 'goalsPrevented': 0.0555, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.2857142857142857}, 'team': 'Barcelona', 'name': 'inaki-pena', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330023'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 54, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 100, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.214805, 'passPerc': 0.84375, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330024'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 77, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'bigChanceCreated': 1, 'totalClearance': 4, 'minutesPlayed': 88, 'touches': 88, 'possessionLostCtrl': 4, 'keyPass': 2, 'expectedAssists': 0.0233049, 'passPerc': 0.9506172839506173, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330025'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 108, 'accuratePass': 101, 'totalLongBalls': 15, 'accurateLongBalls': 11, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 117, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0292175, 'passPerc': 0.9351851851851852, 'longballsPerc': 0.7333333333333333}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330026'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 43, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 9, 'totalContest': 6, 'wonContest': 3, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'wasFouled': 5, 'minutesPlayed': 88, 'touches': 72, 'possessionLostCtrl': 11, 'expectedGoals': 0.0627, 'keyPass': 1, 'expectedAssists': 0.111672, 'passPerc': 0.8958333333333334, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330027'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 59, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 9, 'expectedGoals': 0.3771, 'expectedAssists': 0.126554, 'passPerc': 0.8676470588235294, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'eric-garcia', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330028'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 60, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 9, 'expectedGoals': 0.1158, 'keyPass': 1, 'expectedAssists': 0.0292623, 'passPerc': 0.9090909090909091, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330029'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 12, 'duelWon': 9, 'dispossessed': 5, 'totalContest': 11, 'wonContest': 5, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 26, 'expectedGoals': 0.0955, 'expectedAssists': 0.0539062, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d33002b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 42, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 4, 'dispossessed': 1, 'totalContest': 3, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 24, 'expectedGoals': 0.6106, 'keyPass': 3, 'expectedAssists': 0.194326, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d33002c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 3, 'totalContest': 2, 'wonContest': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 2, 'goals': 1, 'wasFouled': 1, 'totalOffside': 3, 'minutesPlayed': 77, 'touches': 23, 'possessionLostCtrl': 3, 'expectedGoals': 0.6696, 'expectedAssists': 0.027037, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330039'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 5, 'totalLongBalls': 22, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 2, 'errorLeadToAGoal': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 21, 'goalsPrevented': 0.422, 'passPerc': 0.22727272727272727, 'longballsPerc': 0.22727272727272727}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33003a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 87, 'touches': 22, 'possessionLostCtrl': 5, 'expectedAssists': 0.0137061, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33003b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 9, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 4, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 23, 'possessionLostCtrl': 5, 'passPerc': 0.6428571428571429, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'juan-berrocal', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33003c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 3, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'shotOffTarget': 1, 'totalClearance': 6, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 10, 'expectedGoals': 0.0163, 'passPerc': 0.23076923076923078, 'longballsPerc': 0.16666666666666666}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33003d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 8, 'accuratePass': 3, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 8, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 14, 'expectedGoals': 0.0081, 'keyPass': 1, 'expectedAssists': 0.0390909, 'passPerc': 0.375, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33003e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 16, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 18, 'expectedGoals': 0.0135, 'keyPass': 1, 'expectedAssists': 0.0331044, 'passPerc': 0.5333333333333333, 'longballsPerc': 0.25}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33003f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 7, 'accuratePass': 7, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 6, 'challengeLost': 2, 'totalContest': 5, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 4, 'fouls': 4, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 11, 'expectedGoals': 0.1778, 'expectedAssists': 0.0194269, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'carles-perez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d330043'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 8, 'goalAssist': 0, 'aerialLost': 5, 'duelLost': 9, 'duelWon': 2, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 1, 'wasFouled': 1, 'totalOffside': 3, 'minutesPlayed': 80, 'touches': 21, 'possessionLostCtrl': 10, 'expectedAssists': 0.00630198, 'passPerc': 0.7272727272727273, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d330050'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 27, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 1, 'passPerc': 0.9642857142857143, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330051'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 61, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 106, 'possessionLostCtrl': 17, 'expectedAssists': 0.0287964, 'passPerc': 0.8714285714285714, 'longballsPerc': 0.3333333333333333}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330052'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 111, 'accuratePass': 99, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 120, 'possessionLostCtrl': 12, 'expectedGoals': 0.0404, 'expectedAssists': 0.0241921, 'passPerc': 0.8918918918918919, 'longballsPerc': 0.42857142857142855}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330053'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 107, 'accuratePass': 96, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'duelWon': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 114, 'possessionLostCtrl': 14, 'expectedAssists': 0.0437214, 'passPerc': 0.897196261682243, 'longballsPerc': 0.42857142857142855}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330054'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 14, 'expectedGoals': 0.2366, 'keyPass': 1, 'expectedAssists': 0.403355, 'passPerc': 0.8378378378378378, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330055'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 15, 'expectedGoals': 0.0654, 'keyPass': 1, 'expectedAssists': 0.330204, 'passPerc': 0.7894736842105263, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'viktor-tsygankov', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330056'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 83, 'accuratePass': 77, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 7, 'expectedGoals': 0.0332, 'keyPass': 1, 'expectedAssists': 0.248513, 'passPerc': 0.927710843373494, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330057'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 57, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 3, 'dispossessed': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'interceptionWon': 3, 'totalTackle': 4, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 15, 'expectedGoals': 0.1466, 'keyPass': 2, 'expectedAssists': 0.024219, 'passPerc': 0.8507462686567164, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'yangel-herrera', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330059'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'hitWoodwork': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 75, 'touches': 50, 'possessionLostCtrl': 14, 'expectedGoals': 0.5142, 'expectedAssists': 0.0958534, 'passPerc': 0.8181818181818182, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'yaser-asprilla', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330067'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 11, 'totalLongBalls': 13, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 10, 'goalsPrevented': 0.0907, 'passPerc': 0.5238095238095238, 'longballsPerc': 0.23076923076923078}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330068'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 12, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 12, 'expectedAssists': 0.0112067, 'passPerc': 0.631578947368421, 'longballsPerc': 0.25}, 'team': 'Rayo Vallecano', 'name': 'ivan-balliu', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330069'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 30, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 1, 'totalClearance': 8, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 3, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.75}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d33006a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 19, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 4, 'passPerc': 0.8260869565217391, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d33006c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 23, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 13, 'expectedGoals': 0.0265, 'passPerc': 0.7931034482758621, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d33006e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 14, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 4, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d330071'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 78, 'touches': 23, 'possessionLostCtrl': 6, 'expectedAssists': 0.0137461, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'sergio-camello', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d33007e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 4, 'goalsPrevented': -0.4131, 'passPerc': 0.8620689655172413, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d33007f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 80, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 1, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 108, 'possessionLostCtrl': 11, 'expectedGoals': 0.2214, 'keyPass': 1, 'expectedAssists': 0.0201427, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330080'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 101, 'accuratePass': 99, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 109, 'possessionLostCtrl': 2, 'expectedAssists': 0.0117127, 'passPerc': 0.9801980198019802, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330081'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 93, 'accuratePass': 87, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 106, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0215114, 'passPerc': 0.9354838709677419, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330082'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 66, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 6, 'expectedAssists': 0.0193008, 'passPerc': 0.9565217391304348, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'ferland-mendy', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330084'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 64, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'interceptionWon': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 6, 'expectedGoals': 0.0632, 'expectedAssists': 0.0165061, 'passPerc': 0.9411764705882353, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330085'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 78, 'accuratePass': 69, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 94, 'possessionLostCtrl': 16, 'keyPass': 2, 'expectedAssists': 0.216791, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330087'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 30, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 4, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 2, 'minutesPlayed': 80, 'touches': 48, 'possessionLostCtrl': 11, 'expectedGoals': 0.6301, 'expectedAssists': 0.018302, 'passPerc': 0.8333333333333334, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330088'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 12, 'duelWon': 5, 'dispossessed': 3, 'totalContest': 12, 'wonContest': 4, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalTackle': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 61, 'possessionLostCtrl': 22, 'expectedGoals': 0.2377, 'keyPass': 1, 'expectedAssists': 0.266718, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d330092'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 9, 'totalLongBalls': 22, 'accurateLongBalls': 8, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 24, 'possessionLostCtrl': 14, 'goalsPrevented': -1.4595, 'passPerc': 0.391304347826087, 'longballsPerc': 0.36363636363636365}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d330093'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 17, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 8, 'duelWon': 8, 'challengeLost': 4, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 6, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0294374, 'passPerc': 0.8095238095238095, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'santiago-mourino', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d330095'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 19, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 5, 'passPerc': 0.8636363636363636, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d330097'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 7, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.176751, 'passPerc': 0.8333333333333334, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'hugo-novoa-ramos', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d330098'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 42, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 3, 'totalTackle': 3, 'errorLeadToAShot': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 5, 'expectedGoals': 0.0742, 'keyPass': 1, 'expectedAssists': 0.042875, 'passPerc': 0.8936170212765957, 'longballsPerc': 0.75}, 'team': 'Deportivo Alavés', 'name': 'carlos-benavidez', 'rating': 8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d33009a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 21, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 3, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 18, 'expectedGoals': 0.3287, 'keyPass': 2, 'expectedAssists': 0.0781444, 'passPerc': 0.6774193548387096, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'tomas-conechny', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d3300a9'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 15, 'totalLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 6, 'goalsPrevented': 0.106, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300ab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 41, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 11, 'expectedGoals': 0.0136, 'keyPass': 1, 'passPerc': 0.803921568627451, 'longballsPerc': 0.4}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300ac'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 61, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 13, 'expectedGoals': 0.0534, 'expectedAssists': 0.0051029, 'passPerc': 0.8472222222222222, 'longballsPerc': 0.7142857142857143}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300ad'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 20, 'expectedGoals': 0.0419, 'expectedAssists': 0.00732278, 'passPerc': 0.6571428571428571, 'longballsPerc': 0.2}, 'team': 'Valencia', 'name': 'jesus-vazquez', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300b0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 17, 'expectedGoals': 0.0424, 'keyPass': 1, 'expectedAssists': 0.117925, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300b1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 5, 'duelLost': 2, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 13, 'expectedGoals': 0.007, 'keyPass': 2, 'expectedAssists': 0.273513, 'passPerc': 0.8275862068965517, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300b3'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 6, 'accuratePass': 5, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'totalClearance': 1, 'wasFouled': 1, 'totalOffside': 2, 'minutesPlayed': 84, 'touches': 15, 'possessionLostCtrl': 5, 'expectedGoals': 0.3528, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'dani-gomez', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300c0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 30, 'totalLongBalls': 22, 'accurateLongBalls': 13, 'goalAssist': 0, 'totalClearance': 2, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 9, 'goalsPrevented': 0.2608, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.5909090909090909}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300c1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 31, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 4, 'totalTackle': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0216259, 'passPerc': 0.8378378378378378, 'longballsPerc': 0.8}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300c2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 41, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 11, 'passPerc': 0.82, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300c3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 36, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 5, 'outfielderBlock': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 8, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.2857142857142857}, 'team': 'Osasuna', 'name': 'herrando-jorge', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300c4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 22, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 15, 'expectedGoals': 0.0243, 'expectedAssists': 0.00844382, 'passPerc': 0.8148148148148148, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300c6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 22, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 6, 'duelLost': 4, 'duelWon': 7, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 15, 'expectedGoals': 0.0589, 'expectedAssists': 0.0185941, 'passPerc': 0.6285714285714286, 'longballsPerc': 0.2}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300c8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 13, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 77, 'touches': 43, 'possessionLostCtrl': 18, 'expectedGoals': 0.1729, 'keyPass': 1, 'expectedAssists': 0.0270781, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ruben-pena', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300ca'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 16, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 22, 'keyPass': 1, 'expectedAssists': 0.133048, 'passPerc': 0.5333333333333333, 'longballsPerc': 0.16666666666666666}, 'team': 'Osasuna', 'name': 'moi-gomez', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877183201ea30d3300d7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 13, 'accurateLongBalls': 5, 'goalAssist': 0, 'goodHighClaim': 2, 'saves': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 9, 'goalsPrevented': -0.0721, 'passPerc': 0.6190476190476191, 'longballsPerc': 0.38461538461538464}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300d8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0490659, 'passPerc': 0.8285714285714286, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300d9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 11, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 4, 'shotOffTarget': 1, 'totalClearance': 5, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 8, 'expectedGoals': 0.0155, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.6363636363636364}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300da'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 35, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 10, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.5714285714285714}, 'team': 'Sevilla', 'name': 'marcao', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300db'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 3, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 7, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 89, 'touches': 73, 'possessionLostCtrl': 15, 'expectedGoals': 0.1381, 'keyPass': 1, 'expectedAssists': 0.0122297, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.6666666666666666}, 'team': 'Sevilla', 'name': 'valentin-barco', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300dc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 19, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 3, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 4, 'expectedAssists': 0.0135438, 'passPerc': 0.8636363636363636, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300df'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 20, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 3, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 41, 'possessionLostCtrl': 8, 'expectedGoals': 1.0866, 'keyPass': 3, 'expectedAssists': 0.462227, 'passPerc': 0.9523809523809523, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'peque-fernandez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300e0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 3, 'dispossessed': 4, 'totalContest': 4, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 20, 'expectedGoals': 0.1207, 'keyPass': 1, 'expectedAssists': 0.117443, 'passPerc': 0.8235294117647058, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877183201ea30d3300ee'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 14, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 6, 'goalsPrevented': -0.5237, 'passPerc': 0.76, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d3300ef'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 6, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 14, 'expectedAssists': 0.00983582, 'passPerc': 0.9166666666666666, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d3300f0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 5, 'outfielderBlock': 2, 'totalTackle': 2, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 6, 'expectedAssists': 0.00976556, 'passPerc': 0.76, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d3300f1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'totalClearance': 7, 'outfielderBlock': 3, 'ownGoals': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 7, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Valladolid', 'name': 'david-torres', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d3300f2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 18, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'interceptionWon': 3, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 13, 'expectedGoals': 0.0054, 'expectedAssists': 0.00596661, 'passPerc': 0.72, 'longballsPerc': 0.2}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d3300f3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 41, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 13, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 7, 'errorLeadToAShot': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 11, 'expectedGoals': 0.0262, 'keyPass': 2, 'expectedAssists': 0.128077, 'passPerc': 0.8723404255319149, 'longballsPerc': 0.7142857142857143}, 'team': 'Real Valladolid', 'name': 'martin-mario', 'rating': 7.7, 'match_result': 'L'}
{'_id': ObjectId('6764877183201ea30d3300f4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 86, 'touches': 54, 'possessionLostCtrl': 8, 'expectedAssists': 0.00714768, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.4}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330104'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 2, 'goalsPrevented': -0.6246, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.75}, 'team': 'Leganés', 'name': 'juan-soriano', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330105'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 24, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 17, 'expectedGoals': 0.0271, 'keyPass': 1, 'expectedAssists': 0.0511385, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.14285714285714285}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330107'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 51, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 1, 'duelWon': 9, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 12, 'expectedGoals': 0.0082, 'passPerc': 0.8095238095238095, 'longballsPerc': 0.3}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330108'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 36, 'totalLongBalls': 8, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'challengeLost': 1, 'totalClearance': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 11, 'passPerc': 0.7659574468085106, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330109'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 2, 'shotOffTarget': 2, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 13, 'expectedGoals': 0.0777, 'keyPass': 1, 'expectedAssists': 0.0246493, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.3333333333333333}, 'team': 'Leganés', 'name': 'enric-franquesa', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33010b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 51, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 11, 'expectedGoals': 0.028, 'keyPass': 2, 'expectedAssists': 0.0203755, 'passPerc': 0.85, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33010c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 3, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 80, 'touches': 49, 'possessionLostCtrl': 12, 'expectedGoals': 0.0199, 'keyPass': 1, 'expectedAssists': 0.0519276, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'roberto-lopez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33010d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 10, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 13, 'expectedGoals': 0.409, 'expectedAssists': 0.0619665, 'passPerc': 0.5882352941176471, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33010e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 6, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 80, 'touches': 29, 'possessionLostCtrl': 11, 'expectedGoals': 0.2508, 'keyPass': 1, 'expectedAssists': 0.156946, 'passPerc': 0.7142857142857143, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'sebastien-haller', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33011b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 13, 'totalLongBalls': 21, 'accurateLongBalls': 7, 'goalAssist': 0, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 15, 'goalsPrevented': 0.6317, 'passPerc': 0.48148148148148145, 'longballsPerc': 0.3333333333333333}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33011c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 49, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 5, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 11, 'keyPass': 2, 'expectedAssists': 0.372461, 'passPerc': 0.8909090909090909, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'andoni-gorosabel', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33011d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 49, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'goals': 1, 'totalClearance': 6, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 12, 'expectedGoals': 0.3147, 'expectedAssists': 0.00845149, 'passPerc': 0.8305084745762712, 'longballsPerc': 0.5454545454545454}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33011e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 46, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'hitWoodwork': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 6, 'totalTackle': 1, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 6, 'expectedGoals': 0.2266, 'expectedAssists': 0.00933388, 'passPerc': 0.92, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'unai-nunez', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33011f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 42, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 2, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.471157, 'passPerc': 0.84, 'longballsPerc': 0.5714285714285714}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330124'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 10, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 26, 'expectedGoals': 0.067, 'keyPass': 1, 'expectedAssists': 0.193768, 'passPerc': 0.8125, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'alex-berenguer', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330132'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 23, 'totalLongBalls': 26, 'accurateLongBalls': 12, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 5, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 14, 'goalsPrevented': 0.2294, 'passPerc': 0.6216216216216216, 'longballsPerc': 0.46153846153846156}, 'team': 'Mallorca', 'name': 'leo-roman', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330133'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 9, 'expectedAssists': 0.0120524, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.5555555555555556}, 'team': 'Mallorca', 'name': 'antonio-sanchez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330134'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 32, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 3, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 7, 'expectedGoals': 0.0394, 'keyPass': 1, 'expectedAssists': 0.0338781, 'passPerc': 0.8205128205128205, 'longballsPerc': 0.42857142857142855}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330135'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'shotOffTarget': 1, 'totalClearance': 7, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 3, 'expectedGoals': 0.0361, 'passPerc': 0.896551724137931, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'jose-copete', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330136'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 28, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 3, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 20, 'expectedAssists': 0.0127108, 'passPerc': 0.7567567567567568, 'longballsPerc': 0.4444444444444444}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330137'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'wasFouled': 1, 'minutesPlayed': 88, 'touches': 45, 'possessionLostCtrl': 14, 'expectedGoals': 0.0295, 'keyPass': 1, 'expectedAssists': 0.00804839, 'passPerc': 0.7, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330138'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 42, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 3, 'keyPass': 1, 'expectedAssists': 0.00882604, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.8333333333333334}, 'team': 'Mallorca', 'name': 'omar-mascarell', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33013b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 28, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 5, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 9, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 88, 'touches': 57, 'possessionLostCtrl': 13, 'expectedGoals': 0.0525, 'keyPass': 5, 'expectedAssists': 0.434281, 'passPerc': 0.7567567567567568, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330149'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 6, 'goalsPrevented': -0.0523, 'passPerc': 0.8125, 'longballsPerc': 0.45454545454545453}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33014b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 61, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 7, 'aerialWon': 4, 'duelLost': 11, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 9, 'expectedAssists': 0.0146609, 'passPerc': 0.8840579710144928, 'longballsPerc': 0.42857142857142855}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33014c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 86, 'accuratePass': 75, 'totalLongBalls': 12, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0288298, 'passPerc': 0.872093023255814, 'longballsPerc': 0.5833333333333334}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33014d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 41, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0204669, 'passPerc': 0.8541666666666666, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'aihen-munoz', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d33014e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 57, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 14, 'expectedGoals': 0.0152, 'keyPass': 1, 'expectedAssists': 0.0733131, 'passPerc': 0.8507462686567164, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330151'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 47, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 4, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 9, 'expectedGoals': 0.1891, 'keyPass': 4, 'expectedAssists': 0.182474, 'passPerc': 0.8703703703703703, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330152'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 3, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'penaltyConceded': 1, 'fouls': 3, 'minutesPlayed': 78, 'touches': 45, 'possessionLostCtrl': 15, 'expectedGoals': 0.2023, 'expectedAssists': 0.0197005, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'ander-barrenetxea', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330160'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 19, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 2, 'goalsPrevented': -0.7452, 'passPerc': 0.9047619047619048, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330161'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 71, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0262493, 'passPerc': 0.9342105263157895, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'hector-bellerin', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330162'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 74, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 2, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 2, 'expectedAssists': 0.00641076, 'passPerc': 0.9736842105263158, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330163'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 67, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 7, 'duelLost': 2, 'duelWon': 11, 'totalClearance': 8, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 12, 'expectedAssists': 0.00544026, 'passPerc': 0.881578947368421, 'longballsPerc': 0.8571428571428571}, 'team': 'Real Betis', 'name': 'natan', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330165'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 54, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 81, 'touches': 73, 'possessionLostCtrl': 7, 'expectedGoals': 0.0883, 'keyPass': 2, 'expectedAssists': 0.143461, 'passPerc': 0.9310344827586207, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 7.7, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330166'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 55, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 9, 'expectedGoals': 0.1629, 'keyPass': 2, 'expectedAssists': 0.0812631, 'passPerc': 0.9016393442622951, 'longballsPerc': 0.2}, 'team': 'Real Betis', 'name': 'marc-roca', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330168'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 46, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 3, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 24, 'expectedGoals': 0.0658, 'keyPass': 1, 'expectedAssists': 0.150963, 'passPerc': 0.8214285714285714, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'lo-celso-giovani', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330169'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 34, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'blockedScoringAttempt': 2, 'hitWoodwork': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 81, 'touches': 63, 'possessionLostCtrl': 15, 'expectedGoals': 0.2545, 'keyPass': 1, 'expectedAssists': 0.0303049, 'passPerc': 0.8292682926829268, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330177'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 10, 'totalLongBalls': 12, 'accurateLongBalls': 2, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 5, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 11, 'goalsPrevented': 0.0074000000000001, 'passPerc': 0.5, 'longballsPerc': 0.16666666666666666}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330178'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 16, 'expectedAssists': 0.00579546, 'passPerc': 0.6551724137931034, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'antonio-sanchez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33017a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 41, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 6, 'totalClearance': 6, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 8, 'passPerc': 0.8541666666666666, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33017b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 3, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 3, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.108052, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33017c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 42, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 2, 'outfielderBlock': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 3, 'expectedAssists': 0.0141028, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'omar-mascarell', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33017d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 40, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 1, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 3, 'expectedGoals': 0.4088, 'keyPass': 1, 'expectedAssists': 0.0555665, 'passPerc': 0.9302325581395349, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33017e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'onTargetScoringAttempt': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 76, 'touches': 54, 'possessionLostCtrl': 17, 'expectedGoals': 0.1807, 'keyPass': 2, 'expectedAssists': 0.156596, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'robert-navarro', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33017f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 15, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'totalContest': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 76, 'touches': 33, 'possessionLostCtrl': 10, 'expectedGoals': 0.3373, 'expectedAssists': 0.010449, 'passPerc': 0.6818181818181818, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'dani-rodriguez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330180'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'totalTackle': 3, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 87, 'touches': 43, 'possessionLostCtrl': 12, 'expectedAssists': 0.05915, 'passPerc': 0.8148148148148148, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d330181'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'goalAssist': 1, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 10, 'duelWon': 3, 'dispossessed': 5, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'totalClearance': 2, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 76, 'touches': 41, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0179387, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'cyle-larin', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d33018e'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 24, 'totalLongBalls': 24, 'accurateLongBalls': 9, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'totalKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 15, 'goalsPrevented': 0.3013, 'passPerc': 0.6153846153846154, 'longballsPerc': 0.375}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d33018f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 40, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 3, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 13, 'expectedGoals': 0.234, 'keyPass': 3, 'expectedAssists': 0.143289, 'passPerc': 0.8695652173913043, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d330190'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 54, 'totalLongBalls': 14, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'totalClearance': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 19, 'expectedAssists': 0.0092502, 'passPerc': 0.7605633802816901, 'longballsPerc': 0.5714285714285714}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d330191'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 49, 'totalLongBalls': 15, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 16, 'passPerc': 0.7538461538461538, 'longballsPerc': 0.2}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d330192'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 51, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 2, 'totalContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 12, 'expectedAssists': 0.0138546, 'passPerc': 0.9107142857142857, 'longballsPerc': 0.25}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d330193'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 46, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 7, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 6, 'expectedGoals': 0.1394, 'keyPass': 2, 'expectedAssists': 0.0193259, 'passPerc': 0.92, 'longballsPerc': 0.75}, 'team': 'Rayo Vallecano', 'name': 'ismaila-ciss', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d330195'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 2, 'minutesPlayed': 85, 'touches': 43, 'possessionLostCtrl': 7, 'expectedGoals': 0.0612, 'keyPass': 1, 'expectedAssists': 0.136515, 'passPerc': 0.8387096774193549, 'longballsPerc': 1.0}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d330196'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 23, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'duelLost': 9, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 85, 'touches': 45, 'possessionLostCtrl': 12, 'expectedGoals': 1.2531, 'expectedAssists': 0.0299344, 'passPerc': 0.8518518518518519, 'longballsPerc': 1.0}, 'team': 'Rayo Vallecano', 'name': 'isi-palazon', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301a5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 7, 'goalsPrevented': 0.3719, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.4}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301a6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 28, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 4, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 17, 'expectedGoals': 0.0336, 'keyPass': 2, 'expectedAssists': 0.213433, 'passPerc': 0.7, 'longballsPerc': 0.4}, 'team': 'Atlético Madrid', 'name': 'nahuel-molina', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301a8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 60, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 8, 'duelLost': 2, 'duelWon': 9, 'blockedScoringAttempt': 1, 'totalClearance': 11, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 9, 'expectedGoals': 0.0291, 'expectedAssists': 0.00711645, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.75}, 'team': 'Atlético Madrid', 'name': 'axel-witsel', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301a9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 45, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 7, 'outfielderBlock': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 10, 'expectedAssists': 0.0128438, 'passPerc': 0.8653846153846154, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'reinildo-mandava', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301ac'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 41, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 7, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.0338776, 'passPerc': 0.7321428571428571, 'longballsPerc': 0.4}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301ad'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 33, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 9, 'challengeLost': 2, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 15, 'expectedGoals': 0.0633, 'keyPass': 1, 'expectedAssists': 0.0182595, 'passPerc': 0.7674418604651163, 'longballsPerc': 0.2}, 'team': 'Atlético Madrid', 'name': 'conor-gallagher', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301ae'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 10, 'totalLongBalls': 1, 'goalAssist': 1, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 6, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 85, 'touches': 28, 'possessionLostCtrl': 13, 'expectedGoals': 0.0853, 'keyPass': 2, 'expectedAssists': 0.118057, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'alexander-sorloth', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301af'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 12, 'expectedGoals': 0.041, 'keyPass': 1, 'expectedAssists': 0.0583218, 'passPerc': 0.6551724137931034, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'julian-alvarez', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877283201ea30d3301bb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 14, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 6, 'goalsPrevented': -1.4857, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.5714285714285714}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301bc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 5, 'totalContest': 4, 'wonContest': 3, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 6, 'expectedAssists': 0.00621621, 'passPerc': 0.9, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301bd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 19, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 4, 'totalTackle': 3, 'penaltyConceded': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 1, 'passPerc': 0.95, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'eric-bailly', 'rating': 5.7, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301be'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 22, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 11, 'expectedGoals': 0.0917, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.2727272727272727}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301bf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 15, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 3, 'challengeLost': 4, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 15, 'expectedGoals': 0.0805, 'expectedAssists': 0.00948694, 'passPerc': 0.6521739130434783, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301c1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 34, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 6, 'fouls': 1, 'minutesPlayed': 78, 'touches': 57, 'possessionLostCtrl': 8, 'expectedAssists': 0.0184867, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301c3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 49, 'possessionLostCtrl': 16, 'expectedGoals': 0.1541, 'keyPass': 3, 'expectedAssists': 0.207094, 'passPerc': 0.8214285714285714, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301c4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 56, 'possessionLostCtrl': 14, 'expectedGoals': 0.6204, 'keyPass': 3, 'expectedAssists': 0.37055, 'passPerc': 0.84375, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'nicolas-pepe', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301c5'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 7, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceCreated': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'wasFouled': 4, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 23, 'possessionLostCtrl': 5, 'expectedGoals': 0.8375, 'keyPass': 2, 'expectedAssists': 0.216761, 'passPerc': 0.7, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'ayoze-perez', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301d0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 66, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 95, 'possessionLostCtrl': 8, 'expectedGoals': 0.0434, 'keyPass': 2, 'expectedAssists': 0.266009, 'passPerc': 0.9295774647887324, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301d2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 70, 'totalLongBalls': 7, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'totalClearance': 5, 'minutesPlayed': 81, 'touches': 81, 'possessionLostCtrl': 4, 'keyPass': 1, 'expectedAssists': 0.0478399, 'passPerc': 0.9459459459459459, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301d3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 54, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 7, 'expectedAssists': 0.0416137, 'passPerc': 0.9310344827586207, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'gerard-martin', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301d5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 46, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 4, 'fouls': 3, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 5, 'expectedGoals': 0.1848, 'expectedAssists': 0.0157293, 'passPerc': 0.92, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'eric-garcia', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301d7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 31, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'interceptionWon': 1, 'wasFouled': 4, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 18, 'expectedGoals': 0.1636, 'keyPass': 3, 'expectedAssists': 0.574901, 'passPerc': 0.7948717948717948, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 8.7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301d8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 3, 'bigChanceMissed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'hitWoodwork': 1, 'goals': 2, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 10, 'expectedGoals': 2.3311, 'penaltyMiss': 1, 'expectedAssists': 0.0232855, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.6666666666666666}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301d9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'bigChanceMissed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 5, 'goals': 2, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 14, 'expectedGoals': 1.3083, 'keyPass': 2, 'expectedAssists': 0.161919, 'passPerc': 0.7941176470588235, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8.6, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301e6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'totalContest': 1, 'totalClearance': 3, 'interceptionWon': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0888275, 'passPerc': 0.84375, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301e7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 7, 'expectedGoals': 0.0578, 'expectedAssists': 0.0287434, 'passPerc': 0.8529411764705882, 'longballsPerc': 0.4}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301e8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 16, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 5, 'challengeLost': 1, 'totalClearance': 12, 'outfielderBlock': 2, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 3, 'expectedAssists': 0.00613873, 'passPerc': 0.8421052631578947, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301eb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 37, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 9, 'expectedAssists': 0.0186256, 'passPerc': 0.8409090909090909, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'benat-prados', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301ec'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 5, 'wonContest': 3, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 9, 'keyPass': 2, 'expectedAssists': 0.36538, 'passPerc': 0.8947368421052632, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301ed'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 28, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 5, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 11, 'expectedGoals': 0.1612, 'expectedAssists': 0.0365688, 'passPerc': 0.9032258064516129, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'oihan-sancet', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301ee'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 2, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 31, 'possessionLostCtrl': 9, 'expectedGoals': 0.0342, 'keyPass': 1, 'expectedAssists': 0.126125, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'alex-berenguer', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301ef'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 28, 'possessionLostCtrl': 6, 'expectedGoals': 0.2382, 'passPerc': 0.8125, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'gorka-guruzeta', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764877283201ea30d3301fb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 1, 'goalsPrevented': -1.2195, 'passPerc': 0.9375, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301fc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 105, 'accuratePass': 96, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 4, 'duelLost': 1, 'duelWon': 9, 'dispossessed': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 120, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0202494, 'passPerc': 0.9142857142857143, 'longballsPerc': 0.2857142857142857}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d3301fd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 94, 'accuratePass': 89, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 2, 'blockedScoringAttempt': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 103, 'possessionLostCtrl': 5, 'expectedGoals': 0.0903, 'expectedAssists': 0.00688361, 'passPerc': 0.9468085106382979, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330201'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 63, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 16, 'keyPass': 2, 'expectedAssists': 0.13261, 'passPerc': 0.8873239436619719, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'damian-rodriguez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330203'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 24, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'wasFouled': 2, 'fouls': 1, 'penaltyWon': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 15, 'expectedGoals': 0.7884, 'keyPass': 2, 'expectedAssists': 0.100237, 'passPerc': 0.6857142857142857, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330205'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 4, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 17, 'expectedGoals': 0.0575, 'keyPass': 1, 'expectedAssists': 0.241361, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'jonathan-bamba', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877283201ea30d330206'), 'position': 'D', 'substitute': True, 'statistics': {'totalPass': 61, 'accuratePass': 52, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 85, 'touches': 82, 'possessionLostCtrl': 11, 'expectedGoals': 0.126, 'keyPass': 2, 'expectedAssists': 0.118249, 'passPerc': 0.8524590163934426, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'marcos-alonso', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330212'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 10, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 5, 'goalsPrevented': 0.1168, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330213'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 24, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 29, 'expectedGoals': 0.0758, 'expectedAssists': 0.0347517, 'passPerc': 0.5333333333333333, 'longballsPerc': 0.36363636363636365}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330215'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 39, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 8, 'expectedAssists': 0.00679702, 'passPerc': 0.8297872340425532, 'longballsPerc': 0.625}, 'team': 'Getafe', 'name': 'juan-berrocal', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330216'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 40, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 7, 'totalContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 19, 'expectedGoals': 0.033, 'expectedAssists': 0.0192052, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.375}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330217'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 32, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 14, 'accurateCross': 3, 'duelLost': 2, 'duelWon': 9, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 4, 'wasFouled': 4, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 29, 'expectedGoals': 0.0226, 'expectedAssists': 0.233435, 'passPerc': 0.7441860465116279, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330218'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 13, 'expectedGoals': 0.0867, 'expectedAssists': 0.0126044, 'passPerc': 0.7241379310344828, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'mauro-arambarri', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d33021a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 55, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 7, 'challengeLost': 3, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 11, 'expectedGoals': 0.105, 'keyPass': 3, 'expectedAssists': 0.15117, 'passPerc': 0.9482758620689655, 'longballsPerc': 1.0}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d33021b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 8, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 11, 'duelWon': 5, 'dispossessed': 3, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 78, 'touches': 23, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.119273, 'passPerc': 0.5, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'bertug-ozgur-yildirim', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330229'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 7, 'totalLongBalls': 26, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 22, 'goalsPrevented': 0.4056, 'passPerc': 0.2413793103448276, 'longballsPerc': 0.15384615384615385}, 'team': 'Leganés', 'name': 'marko-dmitrovic', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d33022a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 18, 'totalLongBalls': 15, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 10, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 10, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 5, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 14, 'expectedGoals': 0.3855, 'keyPass': 1, 'passPerc': 0.5625, 'longballsPerc': 0.26666666666666666}, 'team': 'Leganés', 'name': 'jorge-saenz', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d33022b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 17, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 4, 'outfielderBlock': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 16, 'passPerc': 0.5151515151515151, 'longballsPerc': 0.125}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d33022c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'totalClearance': 7, 'outfielderBlock': 3, 'interceptionWon': 4, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 10, 'passPerc': 0.8, 'longballsPerc': 0.2}, 'team': 'Leganés', 'name': 'matija-nastasic', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d33022d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 5, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 12, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.2}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d33022e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 28, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 12, 'duelWon': 11, 'challengeLost': 3, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 1, 'totalTackle': 4, 'wasFouled': 4, 'fouls': 3, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 13, 'expectedAssists': 0.0105452, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.25}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330230'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 13, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 85, 'touches': 54, 'possessionLostCtrl': 20, 'expectedGoals': 0.0958, 'expectedAssists': 0.0203507, 'passPerc': 0.5652173913043478, 'longballsPerc': 0.16666666666666666}, 'team': 'Leganés', 'name': 'juan-cruz', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d330240'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 25, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'ownGoals': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 2, 'goalsPrevented': -0.8085, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.6}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330242'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 82, 'accuratePass': 73, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 10, 'expectedAssists': 0.00947357, 'passPerc': 0.8902439024390244, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330243'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 81, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 7, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 6, 'expectedGoals': 0.2371, 'expectedAssists': 0.0182465, 'passPerc': 0.9529411764705882, 'longballsPerc': 0.8571428571428571}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330244'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 11, 'expectedGoals': 0.2409, 'keyPass': 1, 'expectedAssists': 0.101413, 'passPerc': 0.9285714285714286, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'fran-garcia', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330245'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 85, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 4, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 2, 'bigChanceCreated': 2, 'blockedScoringAttempt': 2, 'minutesPlayed': 90, 'touches': 105, 'possessionLostCtrl': 10, 'expectedGoals': 0.0749, 'keyPass': 6, 'expectedAssists': 0.612784, 'passPerc': 0.9659090909090909, 'longballsPerc': 0.875}, 'team': 'Real Madrid', 'name': 'luka-modric', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330246'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 73, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 8, 'expectedGoals': 0.0095, 'expectedAssists': 0.130367, 'passPerc': 0.9240506329113924, 'longballsPerc': 0.8571428571428571}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330247'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 51, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 83, 'touches': 79, 'possessionLostCtrl': 12, 'expectedGoals': 0.132, 'keyPass': 3, 'expectedAssists': 0.166572, 'passPerc': 0.864406779661017, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330249'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'duelLost': 6, 'duelWon': 1, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 6, 'blockedScoringAttempt': 1, 'goals': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 20, 'expectedGoals': 1.913, 'keyPass': 7, 'expectedAssists': 0.224814, 'passPerc': 0.7619047619047619, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 8.3, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33024a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 36, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 6, 'totalContest': 5, 'wonContest': 4, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 84, 'touches': 55, 'possessionLostCtrl': 7, 'expectedGoals': 0.6407, 'keyPass': 2, 'expectedAssists': 0.18282, 'passPerc': 0.9230769230769231, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'rodrygo', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330253'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 11, 'totalLongBalls': 26, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalClearance': 1, 'errorLeadToAGoal': 1, 'savedShotsFromInsideTheBox': 6, 'saves': 10, 'punches': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 18, 'expectedAssists': 0.00937621, 'goalsPrevented': 0.5403, 'passPerc': 0.39285714285714285, 'longballsPerc': 0.34615384615384615}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 7.8, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330254'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 14, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'shotOffTarget': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 76, 'touches': 32, 'possessionLostCtrl': 9, 'expectedGoals': 0.0136, 'keyPass': 2, 'expectedAssists': 0.027535, 'passPerc': 0.8235294117647058, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'alvaro-tejero', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330255'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 11, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 12, 'passPerc': 0.5, 'longballsPerc': 0.14285714285714285}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330256'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 8, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 2, 'totalClearance': 5, 'outfielderBlock': 3, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 5, 'passPerc': 0.6153846153846154, 'longballsPerc': 0.2}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330257'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 22, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'blockedScoringAttempt': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 12, 'expectedGoals': 0.0363, 'keyPass': 1, 'expectedAssists': 0.0420286, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.375}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330258'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'penaltyConceded': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 9, 'expectedGoals': 0.0215, 'keyPass': 1, 'expectedAssists': 0.0244577, 'passPerc': 0.7692307692307693, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330259'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 11, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 76, 'touches': 33, 'possessionLostCtrl': 12, 'expectedGoals': 0.1682, 'passPerc': 0.55, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33025b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 14, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 10, 'expectedGoals': 0.0558, 'expectedAssists': 0.00841297, 'passPerc': 0.7, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33025d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 15, 'goalAssist': 0, 'duelWon': 1, 'shotOffTarget': 2, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 81, 'touches': 27, 'possessionLostCtrl': 5, 'expectedGoals': 0.0448, 'expectedAssists': 0.0179675, 'passPerc': 0.9375, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33026a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 9, 'totalLongBalls': 10, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 8, 'goalsPrevented': 0.6595, 'passPerc': 0.5294117647058824, 'longballsPerc': 0.2}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33026b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 79, 'touches': 48, 'possessionLostCtrl': 9, 'expectedAssists': 0.00668857, 'passPerc': 0.7407407407407407, 'longballsPerc': 0.2}, 'team': 'Valencia', 'name': 'correia-thierry', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33026c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 26, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 10, 'passPerc': 0.7428571428571429, 'longballsPerc': 0.25}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33026d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 28, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 4, 'expectedGoals': 0.089, 'passPerc': 0.9032258064516129, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33026e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 12, 'expectedAssists': 0.00916427, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'jesus-vazquez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330270'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 33, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 2, 'totalCross': 7, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 3, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 21, 'keyPass': 4, 'expectedAssists': 0.213418, 'passPerc': 0.75, 'longballsPerc': 0.2857142857142857}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330271'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'totalContest': 2, 'shotOffTarget': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 7, 'expectedGoals': 0.0524, 'keyPass': 2, 'expectedAssists': 0.0320679, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330272'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 9, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 88, 'touches': 32, 'possessionLostCtrl': 16, 'expectedGoals': 0.1243, 'expectedAssists': 0.0119191, 'passPerc': 0.5, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'javier-guerra', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330273'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 10, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'minutesPlayed': 88, 'touches': 23, 'possessionLostCtrl': 8, 'expectedGoals': 0.0321, 'keyPass': 1, 'expectedAssists': 0.0971919, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330274'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 6, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 79, 'touches': 20, 'possessionLostCtrl': 7, 'expectedGoals': 0.1372, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'dani-gomez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330281'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 22, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelWon': 1, 'totalTackle': 1, 'goodHighClaim': 4, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 6, 'goalsPrevented': -1.6878, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.3333333333333333}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330282'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 81, 'accuratePass': 72, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 108, 'possessionLostCtrl': 10, 'expectedGoals': 0.0721, 'expectedAssists': 0.0213302, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.375}, 'team': 'Girona FC', 'name': 'alejandro-frances', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330283'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 85, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 98, 'possessionLostCtrl': 3, 'expectedAssists': 0.0104209, 'passPerc': 0.9659090909090909, 'longballsPerc': 0.8}, 'team': 'Girona FC', 'name': 'juanpe', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330284'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 103, 'accuratePass': 88, 'totalLongBalls': 17, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 113, 'possessionLostCtrl': 16, 'expectedGoals': 0.086, 'expectedAssists': 0.00927814, 'passPerc': 0.8543689320388349, 'longballsPerc': 0.35294117647058826}, 'team': 'Girona FC', 'name': 'ladislav-krejci', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330285'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 71, 'totalLongBalls': 13, 'accurateLongBalls': 12, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0947623, 'passPerc': 0.8875, 'longballsPerc': 0.9230769230769231}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330286'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 34, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 5, 'wonContest': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.336033, 'passPerc': 0.8095238095238095, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'yaser-asprilla', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330287'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 37, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 79, 'touches': 52, 'possessionLostCtrl': 7, 'expectedAssists': 0.0129364, 'passPerc': 0.925, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'jhon-solis', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330289'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 6, 'totalContest': 5, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 79, 'touches': 61, 'possessionLostCtrl': 15, 'expectedGoals': 0.0484, 'keyPass': 1, 'expectedAssists': 0.0514454, 'passPerc': 0.9117647058823529, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'arnaut-danjuma', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33028a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 7, 'accuratePass': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 14, 'possessionLostCtrl': 3, 'expectedGoals': 0.0755, 'keyPass': 1, 'expectedAssists': 0.00922124, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'bojan-miovski', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330298'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 22, 'totalLongBalls': 14, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelWon': 1, 'lastManTackle': 1, 'totalTackle': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 5, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 12, 'goalsPrevented': 0.288, 'passPerc': 0.6470588235294118, 'longballsPerc': 0.14285714285714285}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330299'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 23, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0562514, 'passPerc': 0.8846153846153846, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33029a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 2, 'totalClearance': 8, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 9, 'passPerc': 0.75, 'longballsPerc': 0.2}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33029b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 34, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 5, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 15, 'expectedAssists': 0.0108459, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.16666666666666666}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33029c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 89, 'touches': 70, 'possessionLostCtrl': 14, 'expectedAssists': 0.0139523, 'passPerc': 0.7567567567567568, 'longballsPerc': 0.42857142857142855}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33029d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 13, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 12, 'expectedAssists': 0.00547018, 'passPerc': 0.5909090909090909, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33029f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 89, 'touches': 42, 'possessionLostCtrl': 13, 'expectedGoals': 0.055, 'keyPass': 2, 'expectedAssists': 0.19977, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302a0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 9, 'expectedGoals': 0.0426, 'keyPass': 2, 'expectedAssists': 0.0955426, 'passPerc': 0.7941176470588235, 'longballsPerc': 0.6666666666666666}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302a2'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 8, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 5, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 2, 'penaltyWon': 1, 'minutesPlayed': 76, 'touches': 25, 'possessionLostCtrl': 9, 'expectedGoals': 0.9464, 'keyPass': 1, 'expectedAssists': 0.00526836, 'passPerc': 0.7272727272727273, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302af'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 30, 'totalLongBalls': 19, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 11, 'goalsPrevented': -0.1383, 'passPerc': 0.7317073170731707, 'longballsPerc': 0.42105263157894735}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d3302b1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 47, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 6, 'passPerc': 0.8867924528301887, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'juanma-herzog', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d3302b3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 49, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 4, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 8, 'expectedGoals': 0.081, 'expectedAssists': 0.00836689, 'passPerc': 0.875, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'alex-munoz', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d3302b5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 30, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 12, 'expectedGoals': 0.1032, 'keyPass': 1, 'expectedAssists': 0.0695919, 'passPerc': 0.7317073170731707, 'longballsPerc': 0.2}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d3302b7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 50, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 2, 'duelWon': 2, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 11, 'expectedGoals': 0.0954, 'keyPass': 2, 'expectedAssists': 0.216034, 'passPerc': 0.9433962264150944, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d3302b9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 13, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 12, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 7, 'wonContest': 3, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 4, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 18, 'expectedGoals': 0.2986, 'expectedAssists': 0.00577494, 'passPerc': 0.6842105263157895, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'fabio-silva', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d3302c6'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 19, 'totalLongBalls': 17, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'challengeLost': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 8, 'goalsPrevented': 0.5209, 'passPerc': 0.7037037037037037, 'longballsPerc': 0.5294117647058824}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302c7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 3, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 12, 'expectedGoals': 0.0148, 'keyPass': 3, 'expectedAssists': 0.295378, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.4}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302c8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 3, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 1, 'minutesPlayed': 78, 'touches': 30, 'possessionLostCtrl': 4, 'keyPass': 1, 'passPerc': 0.8, 'longballsPerc': 0.25}, 'team': 'Real Valladolid', 'name': 'abdulay-juma-bah', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302ca'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 3, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 14, 'expectedAssists': 0.0211099, 'passPerc': 0.625, 'longballsPerc': 0.16666666666666666}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302cb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 20, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 12, 'expectedGoals': 0.019, 'expectedAssists': 0.0352261, 'passPerc': 0.6451612903225806, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'victor-meseguer', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302cc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 22, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 8, 'challengeLost': 1, 'bigChanceCreated': 1, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 6, 'keyPass': 2, 'expectedAssists': 0.0217634, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302cf'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 12, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 78, 'touches': 35, 'possessionLostCtrl': 9, 'expectedGoals': 0.3358, 'keyPass': 1, 'expectedAssists': 0.0798641, 'passPerc': 0.8, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302d0'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 5, 'aerialWon': 11, 'duelLost': 14, 'duelWon': 17, 'dispossessed': 4, 'totalContest': 3, 'wonContest': 3, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 5, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 15, 'expectedGoals': 0.2343, 'expectedAssists': 0.0115734, 'passPerc': 0.6, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'juanmi-latasa', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302d1'), 'position': 'D', 'substitute': True, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 2, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 76, 'touches': 28, 'possessionLostCtrl': 6, 'expectedGoals': 0.011, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'david-torres', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302dd'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 20, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 7, 'goalsPrevented': 0.243, 'passPerc': 0.7407407407407407, 'longballsPerc': 0.3}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302de'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 40, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 14, 'expectedGoals': 0.0218, 'keyPass': 3, 'expectedAssists': 0.252739, 'passPerc': 0.8, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302df'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 75, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 9, 'aerialWon': 3, 'duelLost': 12, 'duelWon': 6, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 95, 'possessionLostCtrl': 10, 'expectedAssists': 0.0216889, 'passPerc': 0.8928571428571429, 'longballsPerc': 0.375}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302e0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 76, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 4, 'interceptionWon': 1, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 81, 'touches': 91, 'possessionLostCtrl': 4, 'expectedAssists': 0.0130317, 'passPerc': 0.9620253164556962, 'longballsPerc': 0.6}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302e1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 36, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 25, 'keyPass': 3, 'expectedAssists': 0.189859, 'passPerc': 0.782608695652174, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302e3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 59, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 10, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 90, 'possessionLostCtrl': 12, 'expectedGoals': 0.2775, 'keyPass': 1, 'expectedAssists': 0.024611, 'passPerc': 0.855072463768116, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 8, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302e4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 45, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 6, 'expectedGoals': 0.0143, 'expectedAssists': 0.0328313, 'passPerc': 0.9574468085106383, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'benat-turrientes', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302e5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 25, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 11, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 7, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 81, 'touches': 57, 'possessionLostCtrl': 21, 'keyPass': 2, 'expectedAssists': 0.123002, 'passPerc': 0.7352941176470589, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302e7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 10, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 9, 'expectedGoals': 0.4388, 'keyPass': 1, 'expectedAssists': 0.1181, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'sheraldo-becker', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877383201ea30d3302f4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 16, 'totalLongBalls': 23, 'accurateLongBalls': 10, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 2, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0140971, 'goalsPrevented': 0.4895, 'passPerc': 0.5517241379310345, 'longballsPerc': 0.43478260869565216}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302f5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 7, 'totalLongBalls': 5, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 8, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 23, 'expectedGoals': 0.0308, 'keyPass': 1, 'expectedAssists': 0.0181187, 'passPerc': 0.3181818181818182, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302f6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 17, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 13, 'passPerc': 0.6071428571428571, 'longballsPerc': 0.36363636363636365}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302f7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 5, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 5, 'passPerc': 0.7916666666666666, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'aleksandar-sedlar', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302f8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 11, 'expectedAssists': 0.010428, 'passPerc': 0.75, 'longballsPerc': 0.4}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302f9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 28, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 5, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 3, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 53, 'possessionLostCtrl': 16, 'expectedGoals': 0.033, 'keyPass': 2, 'expectedAssists': 0.157055, 'passPerc': 0.7368421052631579, 'longballsPerc': 0.4166666666666667}, 'team': 'Deportivo Alavés', 'name': 'joan-jordan', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302fb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 10, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 8, 'expectedGoals': 0.1341, 'keyPass': 3, 'expectedAssists': 0.157596, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302fd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 8, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 77, 'touches': 35, 'possessionLostCtrl': 11, 'expectedGoals': 0.5143, 'expectedAssists': 0.0084836, 'passPerc': 0.5, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'carlos-martin', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d3302fe'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 4, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 9, 'aerialWon': 4, 'duelLost': 13, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'shotOffTarget': 2, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 76, 'touches': 26, 'possessionLostCtrl': 15, 'expectedGoals': 0.1387, 'keyPass': 1, 'expectedAssists': 0.0808479, 'passPerc': 0.2857142857142857, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'toni-martinez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33030b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 5, 'goalsPrevented': -1.2339, 'passPerc': 0.782608695652174, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33030c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 64, 'accuratePass': 49, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 22, 'expectedAssists': 0.0116194, 'passPerc': 0.765625, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33030e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 100, 'accuratePass': 85, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 10, 'duelLost': 5, 'duelWon': 13, 'totalClearance': 2, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 111, 'possessionLostCtrl': 16, 'expectedAssists': 0.00626282, 'passPerc': 0.85, 'longballsPerc': 0.25}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330312'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 32, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 1, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'dispossessed': 4, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 10, 'expectedGoals': 0.2286, 'keyPass': 2, 'expectedAssists': 0.109451, 'passPerc': 0.8888888888888888, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'saul-niguez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330313'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 10, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 7, 'wonContest': 5, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 19, 'expectedGoals': 0.2145, 'keyPass': 1, 'expectedAssists': 0.256413, 'passPerc': 0.5882352941176471, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'dodi-lukebakio', 'rating': 7.8, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330315'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'wasFouled': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 13, 'expectedGoals': 0.0213, 'expectedAssists': 0.0211317, 'passPerc': 0.8076923076923077, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'peque-fernandez', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330316'), 'position': 'F', 'substitute': True, 'statistics': {'totalPass': 18, 'accuratePass': 16, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 1, 'dispossessed': 4, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'fouls': 2, 'totalOffside': 2, 'minutesPlayed': 76, 'touches': 28, 'possessionLostCtrl': 8, 'expectedAssists': 0.00725102, 'passPerc': 0.8888888888888888, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'kelechi-iheanacho', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330322'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 9, 'goalsPrevented': -0.8456, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.2727272727272727}, 'team': 'Rayo Vallecano', 'name': 'augusto-batalla', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330323'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 47, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 3, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 14, 'expectedGoals': 0.071, 'keyPass': 2, 'expectedAssists': 0.0693101, 'passPerc': 0.94, 'longballsPerc': 0.4}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330324'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 49, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 1, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0121674, 'passPerc': 0.8909090909090909, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330325'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 40, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 16, 'expectedGoals': 0.0231, 'expectedAssists': 0.00602148, 'passPerc': 0.7407407407407407, 'longballsPerc': 0.4166666666666667}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330326'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 37, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 4, 'lastManTackle': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.0393386, 'passPerc': 0.7551020408163265, 'longballsPerc': 0.42857142857142855}, 'team': 'Rayo Vallecano', 'name': 'josep-chavarria', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330327'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 43, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 14, 'keyPass': 2, 'expectedAssists': 0.186135, 'passPerc': 0.7962962962962963, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33032b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'shotOffTarget': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 87, 'touches': 40, 'possessionLostCtrl': 11, 'expectedGoals': 0.1489, 'keyPass': 1, 'expectedAssists': 0.0144675, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'alvaro-garcia', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d33032c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 21, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 2, 'dispossessed': 2, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 87, 'touches': 40, 'possessionLostCtrl': 7, 'expectedGoals': 1.1807, 'keyPass': 2, 'expectedAssists': 0.0152763, 'passPerc': 0.875, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'sergio-camello', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330339'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 17, 'totalLongBalls': 35, 'accurateLongBalls': 14, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 21, 'expectedAssists': 0.00949576, 'goalsPrevented': -1.7293, 'passPerc': 0.4473684210526316, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33033a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 12, 'expectedAssists': 0.014239, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33033b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 9, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'shotOffTarget': 1, 'totalClearance': 10, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 12, 'expectedGoals': 0.101, 'passPerc': 0.45, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33033c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 6, 'outfielderBlock': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 6, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.4}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33033d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 9, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 13, 'passPerc': 0.5294117647058824, 'longballsPerc': 0.2}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33033e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 10, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 8, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 6, 'fouls': 1, 'minutesPlayed': 76, 'touches': 36, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0218152, 'passPerc': 0.5555555555555556, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33033f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 19, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 12, 'duelLost': 7, 'duelWon': 17, 'challengeLost': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 17, 'expectedAssists': 0.0221423, 'passPerc': 0.5757575757575758, 'longballsPerc': 0.16666666666666666}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330341'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 16, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 2, 'totalContest': 1, 'totalClearance': 4, 'fouls': 1, 'minutesPlayed': 76, 'touches': 41, 'possessionLostCtrl': 16, 'keyPass': 1, 'expectedAssists': 0.0253663, 'passPerc': 0.6153846153846154, 'longballsPerc': 0.75}, 'team': 'Osasuna', 'name': 'ruben-garcia', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330343'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 4, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 84, 'touches': 29, 'possessionLostCtrl': 15, 'expectedGoals': 0.1391, 'expectedAssists': 0.254782, 'passPerc': 0.36363636363636365, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330350'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 3, 'goalsPrevented': 0.0721, 'passPerc': 0.85, 'longballsPerc': 0.5714285714285714}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330351'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 48, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 4, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 12, 'expectedGoals': 0.0162, 'keyPass': 4, 'expectedAssists': 0.364296, 'passPerc': 0.8421052631578947, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330352'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 60, 'totalLongBalls': 10, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 12, 'expectedGoals': 0.1829, 'expectedAssists': 0.00511169, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.2}, 'team': 'Atlético Madrid', 'name': 'robin-le-normand', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330353'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 66, 'totalLongBalls': 10, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 4, 'expectedGoals': 0.0548, 'expectedAssists': 0.0108557, 'passPerc': 0.9428571428571428, 'longballsPerc': 0.6}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330354'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 5, 'challengeLost': 1, 'totalTackle': 3, 'minutesPlayed': 77, 'touches': 55, 'possessionLostCtrl': 8, 'expectedAssists': 0.188548, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'cesar-azpilicueta', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330357'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 55, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'challengeLost': 2, 'totalClearance': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.384311, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.14285714285714285}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330358'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 11, 'expectedGoals': 0.6633, 'expectedAssists': 0.00991574, 'passPerc': 0.8285714285714286, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'conor-gallagher', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330359'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 29, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 12, 'accurateCross': 4, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'totalOffside': 1, 'minutesPlayed': 76, 'touches': 62, 'possessionLostCtrl': 21, 'expectedGoals': 0.6604, 'keyPass': 1, 'expectedAssists': 0.386327, 'passPerc': 0.8055555555555556, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877383201ea30d330367'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 16, 'totalLongBalls': 17, 'accurateLongBalls': 8, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 9, 'goalsPrevented': 0.0947, 'passPerc': 0.64, 'longballsPerc': 0.47058823529411764}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330369'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 46, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 6, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 12, 'expectedAssists': 0.0114319, 'passPerc': 0.8070175438596491, 'longballsPerc': 0.2}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33036a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 48, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 7, 'expectedAssists': 0.0118878, 'passPerc': 0.8727272727272727, 'longballsPerc': 0.6666666666666666}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33036b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 43, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 14, 'expectedGoals': 0.0226, 'expectedAssists': 0.043764, 'passPerc': 0.86, 'longballsPerc': 0.2857142857142857}, 'team': 'Valencia', 'name': 'correia-thierry', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33036c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 1, 'totalContest': 6, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0270054, 'passPerc': 0.8214285714285714, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d33036e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 51, 'totalLongBalls': 11, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'duelLost': 3, 'dispossessed': 1, 'totalClearance': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0519975, 'passPerc': 0.864406779661017, 'longballsPerc': 0.7272727272727273}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330370'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 25, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 3, 'shotOffTarget': 2, 'totalTackle': 1, 'errorLeadToAShot': 1, 'fouls': 2, 'minutesPlayed': 79, 'touches': 48, 'possessionLostCtrl': 15, 'expectedGoals': 0.0451, 'expectedAssists': 0.0171843, 'passPerc': 0.78125, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'javier-guerra', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877383201ea30d330371'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 9, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 79, 'touches': 19, 'possessionLostCtrl': 5, 'expectedAssists': 0.00514721, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'dani-gomez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33037b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 12, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 4, 'goodHighClaim': 1, 'saves': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 10, 'goalsPrevented': -0.312, 'passPerc': 0.6875, 'longballsPerc': 0.16666666666666666}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33037c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 32, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 2, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 21, 'expectedAssists': 0.0231064, 'passPerc': 0.8648648648648649, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'park-marvin', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33037e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 53, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 5, 'totalClearance': 3, 'totalTackle': 2, 'minutesPlayed': 77, 'touches': 67, 'possessionLostCtrl': 7, 'passPerc': 0.8833333333333333, 'longballsPerc': 0.25}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33037f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 84, 'accuratePass': 70, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 106, 'possessionLostCtrl': 21, 'expectedAssists': 0.0294587, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.4}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330380'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 15, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 5, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 12, 'expectedGoals': 0.0811, 'keyPass': 2, 'expectedAssists': 0.0843255, 'passPerc': 0.7894736842105263, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'sandro-ramirez', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330383'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 107, 'accuratePass': 89, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 3, 'duelLost': 8, 'duelWon': 3, 'challengeLost': 5, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 121, 'possessionLostCtrl': 22, 'expectedGoals': 0.8113, 'keyPass': 1, 'expectedAssists': 0.168158, 'passPerc': 0.8317757009345794, 'longballsPerc': 0.4}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330384'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 30, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 16, 'expectedGoals': 0.167, 'keyPass': 2, 'expectedAssists': 0.289179, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330385'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 13, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'totalContest': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 77, 'touches': 24, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0420632, 'passPerc': 0.7647058823529411, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'oliver-mcburnie', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330392'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'totalLongBalls': 17, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 9, 'goalsPrevented': -0.7138, 'passPerc': 0.625, 'longballsPerc': 0.47058823529411764}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330393'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 21, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 77, 'touches': 51, 'possessionLostCtrl': 11, 'expectedAssists': 0.00747258, 'passPerc': 0.6774193548387096, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330394'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 24, 'totalLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'totalClearance': 9, 'outfielderBlock': 3, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 9, 'expectedAssists': 0.00686956, 'passPerc': 0.7272727272727273, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330395'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 23, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 5, 'clearanceOffLine': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 12, 'expectedGoals': 0.8723, 'passPerc': 0.6764705882352942, 'longballsPerc': 0.25}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330396'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 33, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialWon': 3, 'duelWon': 7, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 16, 'expectedGoals': 0.0769, 'keyPass': 1, 'expectedAssists': 0.00777298, 'passPerc': 0.7674418604651163, 'longballsPerc': 0.4}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330399'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 3, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 2, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 23, 'expectedGoals': 0.5394, 'keyPass': 3, 'expectedAssists': 0.0971797, 'passPerc': 0.5925925925925926, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303a9'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 36, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 5, 'saves': 5, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 1, 'goalsPrevented': -0.5164, 'passPerc': 0.972972972972973, 'longballsPerc': 0.875}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303aa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 85, 'touches': 51, 'possessionLostCtrl': 7, 'expectedGoals': 0.0203, 'expectedAssists': 0.00637654, 'passPerc': 0.875, 'longballsPerc': 0.42857142857142855}, 'team': 'Girona FC', 'name': 'alejandro-frances', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303ab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 49, 'totalLongBalls': 9, 'accurateLongBalls': 7, 'goalAssist': 0, 'duelLost': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalClearance': 4, 'interceptionWon': 2, 'errorLeadToAGoal': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 10, 'passPerc': 0.9074074074074074, 'longballsPerc': 0.7777777777777778}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 5.6, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303ac'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 42, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 9, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 11, 'expectedAssists': 0.00534056, 'passPerc': 0.84, 'longballsPerc': 0.2}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303ad'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 31, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 17, 'expectedGoals': 0.0295, 'keyPass': 2, 'expectedAssists': 0.164473, 'passPerc': 0.7948717948717948, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303ae'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 43, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0130949, 'passPerc': 0.8958333333333334, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303af'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 11, 'duelWon': 5, 'challengeLost': 4, 'dispossessed': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0571434, 'passPerc': 0.9, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'jhon-solis', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303c0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 38, 'totalLongBalls': 11, 'accurateLongBalls': 8, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 3, 'goalsPrevented': 0.2612, 'passPerc': 0.926829268292683, 'longballsPerc': 0.7272727272727273}, 'team': 'Barcelona', 'name': 'marc-andre-ter-stegen', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303c1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 45, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 1, 'totalCross': 1, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 6, 'expectedGoals': 0.0314, 'keyPass': 2, 'expectedAssists': 0.0694954, 'passPerc': 0.9, 'longballsPerc': 0.8}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303c3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 74, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 6, 'expectedGoals': 0.0163, 'keyPass': 1, 'expectedAssists': 0.0243849, 'passPerc': 0.925, 'longballsPerc': 0.8333333333333334}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303c4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 10, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'totalTackle': 2, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 14, 'expectedGoals': 0.0896, 'expectedAssists': 0.019869, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303c5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 47, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 6, 'expectedGoals': 0.0192, 'keyPass': 1, 'expectedAssists': 0.307471, 'passPerc': 0.9038461538461539, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303c7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 24, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 6, 'duelWon': 10, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 4, 'goals': 2, 'totalTackle': 6, 'wasFouled': 3, 'minutesPlayed': 89, 'touches': 60, 'possessionLostCtrl': 18, 'expectedGoals': 0.7123, 'keyPass': 1, 'expectedAssists': 0.116912, 'passPerc': 0.7741935483870968, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 9.5, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303c9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 24, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 21, 'expectedGoals': 0.0115, 'keyPass': 5, 'expectedAssists': 0.278464, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303d5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 3, 'wasFouled': 2, 'goodHighClaim': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 5, 'goalsPrevented': -0.4678, 'passPerc': 0.75, 'longballsPerc': 0.42857142857142855}, 'team': 'Celta Vigo', 'name': 'vicente-guaita', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303d6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 50, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 89, 'touches': 69, 'possessionLostCtrl': 12, 'expectedAssists': 0.0271977, 'passPerc': 0.819672131147541, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303d7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 59, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 4, 'passPerc': 0.9516129032258065, 'longballsPerc': 0.7142857142857143}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303d8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 51, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 75, 'touches': 61, 'possessionLostCtrl': 3, 'expectedGoals': 0.0371, 'expectedAssists': 0.00716171, 'passPerc': 0.9807692307692307, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'jailson', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303d9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 34, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 16, 'expectedAssists': 0.142672, 'passPerc': 0.7906976744186046, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303db'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'dispossessed': 4, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 11, 'expectedAssists': 0.0164167, 'passPerc': 0.8863636363636364, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303dc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 43, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 8, 'wonContest': 4, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 11, 'expectedGoals': 0.2487, 'keyPass': 3, 'expectedAssists': 0.170681, 'passPerc': 0.9555555555555556, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303dd'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 28, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 1, 'totalCross': 1, 'duelLost': 2, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 16, 'expectedGoals': 0.1231, 'keyPass': 3, 'expectedAssists': 0.259864, 'passPerc': 0.6829268292682927, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303df'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 76, 'touches': 25, 'possessionLostCtrl': 8, 'expectedGoals': 0.0548, 'keyPass': 2, 'expectedAssists': 0.0274987, 'passPerc': 0.8125, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'pablo-duran', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3303ec'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 37, 'totalLongBalls': 20, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 13, 'expectedAssists': 0.00839748, 'goalsPrevented': -0.1876, 'passPerc': 0.74, 'longballsPerc': 0.35}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303ed'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 10, 'expectedAssists': 0.0131116, 'passPerc': 0.868421052631579, 'longballsPerc': 0.75}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303ef'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 56, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 3, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 1, 'passPerc': 0.9824561403508771, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'cenk-ozkacar', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303f0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 33, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 5, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'wasFouled': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 5, 'expectedGoals': 0.034, 'keyPass': 1, 'expectedAssists': 0.125217, 'passPerc': 0.8918918918918919, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303f3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 32, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 81, 'touches': 49, 'possessionLostCtrl': 8, 'expectedGoals': 0.0249, 'expectedAssists': 0.30497, 'passPerc': 0.8421052631578947, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'martin-mario', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303f4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 2, 'wonContest': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 85, 'touches': 41, 'possessionLostCtrl': 9, 'keyPass': 2, 'expectedAssists': 0.0226971, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'amallah-selim', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d3303f6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 8, 'accuratePass': 5, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 3, 'dispossessed': 1, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 5, 'minutesPlayed': 90, 'touches': 19, 'possessionLostCtrl': 8, 'expectedGoals': 0.2219, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'juanmi-latasa', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330402'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 12, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 24, 'possessionLostCtrl': 5, 'goalsPrevented': 0.2016, 'passPerc': 0.7058823529411765, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330403'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 39, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 3, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 5, 'expectedGoals': 0.0081, 'keyPass': 1, 'expectedAssists': 0.149631, 'passPerc': 0.9512195121951219, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'jon-aramburu', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330404'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 39, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'outfielderBlock': 4, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.289828, 'passPerc': 0.8297872340425532, 'longballsPerc': 0.2}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330405'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 75, 'touches': 43, 'possessionLostCtrl': 1, 'expectedGoals': 0.3417, 'passPerc': 0.9705882352941176, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'nayef-aguerd', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330406'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 26, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 78, 'touches': 45, 'possessionLostCtrl': 8, 'expectedAssists': 0.00521703, 'passPerc': 0.9629629629629629, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330407'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 35, 'totalLongBalls': 1, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 18, 'expectedGoals': 0.0887, 'keyPass': 2, 'expectedAssists': 0.334489, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330408'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 33, 'totalLongBalls': 1, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 2, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 2, 'hitWoodwork': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 75, 'touches': 50, 'possessionLostCtrl': 8, 'expectedGoals': 0.3541, 'keyPass': 1, 'expectedAssists': 0.0529027, 'passPerc': 0.8461538461538461, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'luka-sucic', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330409'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 66, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 2, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 7, 'expectedAssists': 0.0735779, 'passPerc': 0.9295774647887324, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33040a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 46, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 3, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 2, 'onTargetScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 15, 'expectedGoals': 0.0388, 'expectedAssists': 0.193111, 'passPerc': 0.8363636363636363, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330419'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 7, 'goalsPrevented': 0.8972, 'passPerc': 0.7666666666666667, 'longballsPerc': 0.36363636363636365}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33041a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 47, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 6, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 9, 'expectedGoals': 0.0889, 'keyPass': 2, 'expectedAssists': 0.0279347, 'passPerc': 0.9038461538461539, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'daniel-carvajal', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33041b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 53, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 15, 'expectedGoals': 0.1048, 'expectedAssists': 0.00814617, 'passPerc': 0.803030303030303, 'longballsPerc': 0.45454545454545453}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33041c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 47, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 9, 'expectedGoals': 0.0544, 'expectedAssists': 0.00579675, 'passPerc': 0.8545454545454545, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33041d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 41, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 1, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 5, 'expectedAssists': 0.028384, 'passPerc': 0.9534883720930233, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'ferland-mendy', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33041e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 59, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 6, 'expectedGoals': 0.0208, 'expectedAssists': 0.0410562, 'passPerc': 0.9365079365079365, 'longballsPerc': 0.8333333333333334}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33041f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 56, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 3, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 11, 'expectedGoals': 0.1176, 'keyPass': 3, 'expectedAssists': 0.324969, 'passPerc': 0.9180327868852459, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'luka-modric', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330421'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 34, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 77, 'touches': 45, 'possessionLostCtrl': 3, 'expectedGoals': 0.0859, 'keyPass': 1, 'expectedAssists': 0.0575455, 'passPerc': 0.9714285714285714, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'arda-guler', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330422'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 19, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 4, 'goals': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 12, 'expectedGoals': 1.0044, 'expectedAssists': 0.019686, 'passPerc': 0.8260869565217391, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330423'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 19, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 7, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 42, 'possessionLostCtrl': 15, 'expectedGoals': 0.9029, 'keyPass': 1, 'expectedAssists': 0.0953642, 'passPerc': 0.8260869565217391, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33042c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 18, 'totalLongBalls': 35, 'accurateLongBalls': 6, 'goalAssist': 0, 'bigChanceCreated': 1, 'totalClearance': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 4, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 29, 'keyPass': 2, 'expectedAssists': 0.0154654, 'goalsPrevented': 0.4158, 'passPerc': 0.3829787234042553, 'longballsPerc': 0.17142857142857143}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33042d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 42, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 10, 'expectedGoals': 0.014, 'keyPass': 1, 'expectedAssists': 0.00996061, 'passPerc': 0.84, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33042e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 30, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 4, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 7, 'passPerc': 0.8108108108108109, 'longballsPerc': 0.25}, 'team': 'Sevilla', 'name': 'tanguy-nianzou', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33042f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 6, 'duelLost': 5, 'duelWon': 11, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 3, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 80, 'touches': 64, 'possessionLostCtrl': 10, 'passPerc': 0.8863636363636364, 'longballsPerc': 0.6666666666666666}, 'team': 'Sevilla', 'name': 'marcao', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330431'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 47, 'totalLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 9, 'expectedAssists': 0.0110532, 'passPerc': 0.8703703703703703, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330432'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 44, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 89, 'touches': 52, 'possessionLostCtrl': 4, 'expectedAssists': 0.0230033, 'passPerc': 0.9565217391304348, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'djibril-sow', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330433'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 25, 'totalLongBalls': 4, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 3, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 13, 'expectedGoals': 0.1311, 'keyPass': 1, 'expectedAssists': 0.0697477, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330434'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 19, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 11, 'duelWon': 3, 'dispossessed': 3, 'totalContest': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 76, 'touches': 36, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0740764, 'passPerc': 0.95, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'peque-fernandez', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330435'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 13, 'duelWon': 5, 'dispossessed': 4, 'totalContest': 4, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 89, 'touches': 45, 'possessionLostCtrl': 13, 'expectedGoals': 0.3134, 'expectedAssists': 0.026335, 'passPerc': 0.8947368421052632, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330443'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 11, 'totalLongBalls': 14, 'accurateLongBalls': 6, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 8, 'goalsPrevented': 0.131, 'passPerc': 0.5789473684210527, 'longballsPerc': 0.42857142857142855}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330444'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 18, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 3, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 7, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 18, 'expectedGoals': 0.0322, 'keyPass': 1, 'expectedAssists': 0.0603509, 'passPerc': 0.6428571428571429, 'longballsPerc': 0.42857142857142855}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330445'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'shotOffTarget': 1, 'totalClearance': 4, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 12, 'expectedGoals': 0.0563, 'expectedAssists': 0.006381, 'passPerc': 0.6551724137931034, 'longballsPerc': 0.2}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330446'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 20, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalClearance': 4, 'interceptionWon': 3, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 89, 'touches': 41, 'possessionLostCtrl': 9, 'passPerc': 0.6896551724137931, 'longballsPerc': 0.3333333333333333}, 'team': 'Getafe', 'name': 'juan-berrocal', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330447'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 4, 'errorLeadToAShot': 1, 'wasFouled': 3, 'minutesPlayed': 84, 'touches': 63, 'possessionLostCtrl': 20, 'expectedGoals': 0.0289, 'keyPass': 1, 'expectedAssists': 0.0186487, 'passPerc': 0.5833333333333334, 'longballsPerc': 0.6}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33044a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 34, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 18, 'expectedGoals': 0.0292, 'keyPass': 2, 'expectedAssists': 0.0580201, 'passPerc': 0.8717948717948718, 'longballsPerc': 0.4}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33044c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 12, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 14, 'duelWon': 4, 'dispossessed': 7, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'hitWoodwork': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 84, 'touches': 32, 'possessionLostCtrl': 14, 'expectedGoals': 0.4778, 'expectedAssists': 0.0185606, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33044d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 7, 'dispossessed': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 6, 'expectedGoals': 0.1322, 'keyPass': 1, 'expectedAssists': 0.113713, 'passPerc': 0.6363636363636364, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'bertug-ozgur-yildirim', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330458'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'totalLongBalls': 17, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'errorLeadToAGoal': 1, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 10, 'goalsPrevented': 1.0733, 'passPerc': 0.625, 'longballsPerc': 0.47058823529411764}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330459'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 22, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 11, 'challengeLost': 1, 'totalClearance': 8, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 17, 'passPerc': 0.6285714285714286, 'longballsPerc': 0.42857142857142855}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33045a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 46, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 6, 'totalClearance': 12, 'outfielderBlock': 3, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 8, 'passPerc': 0.8679245283018868, 'longballsPerc': 0.375}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33045b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 32, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 10, 'outfielderBlock': 1, 'interceptionWon': 1, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 12, 'expectedAssists': 0.00971004, 'passPerc': 0.7804878048780488, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33045c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 8, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 85, 'touches': 33, 'possessionLostCtrl': 13, 'expectedGoals': 0.0372, 'keyPass': 2, 'expectedAssists': 0.0102379, 'passPerc': 0.5, 'longballsPerc': 0.16666666666666666}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33045e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 9, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 7, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 5, 'fouls': 3, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 14, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d330461'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 11, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 8, 'duelWon': 3, 'dispossessed': 3, 'totalContest': 2, 'onTargetScoringAttempt': 3, 'goals': 3, 'totalClearance': 3, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 11, 'expectedGoals': 1.3303, 'keyPass': 1, 'expectedAssists': 0.0146474, 'passPerc': 0.8461538461538461, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 8.9, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33046f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 13, 'accurateLongBalls': 7, 'goalAssist': 0, 'duelLost': 1, 'penaltyConceded': 1, 'fouls': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 6, 'goalsPrevented': -0.2094, 'passPerc': 0.75, 'longballsPerc': 0.5384615384615384}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330470'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 27, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 3, 'challengeLost': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 16, 'expectedGoals': 0.0939, 'keyPass': 2, 'expectedAssists': 0.075973, 'passPerc': 0.7714285714285715, 'longballsPerc': 0.8333333333333334}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330472'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 48, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 5, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 6, 'expectedAssists': 0.0103167, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.6}, 'team': 'Deportivo Alavés', 'name': 'aleksandar-sedlar', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330473'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 25, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 19, 'expectedAssists': 0.108935, 'passPerc': 0.6756756756756757, 'longballsPerc': 0.25}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330476'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 12, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 4, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 18, 'expectedGoals': 0.1102, 'keyPass': 3, 'expectedAssists': 0.449995, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330477'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'duelLost': 7, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'totalTackle': 4, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 17, 'expectedGoals': 0.18, 'expectedAssists': 0.0228922, 'passPerc': 0.6551724137931034, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'stoichkov', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330478'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 3, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 78, 'touches': 43, 'possessionLostCtrl': 17, 'expectedGoals': 0.7225, 'expectedAssists': 0.115569, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'tomas-conechny', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330486'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 26, 'totalLongBalls': 19, 'accurateLongBalls': 8, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 11, 'goalsPrevented': 0.0267, 'passPerc': 0.7027027027027027, 'longballsPerc': 0.42105263157894735}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330487'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 23, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 81, 'touches': 60, 'possessionLostCtrl': 19, 'expectedAssists': 0.154987, 'passPerc': 0.6216216216216216, 'longballsPerc': 0.2857142857142857}, 'team': 'Mallorca', 'name': 'antonio-sanchez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330488'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 6, 'expectedGoals': 0.07, 'passPerc': 0.9, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330489'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 49, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 4, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 10, 'expectedGoals': 0.0122, 'expectedAssists': 0.00706598, 'passPerc': 0.8448275862068966, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33048c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 56, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 11, 'expectedGoals': 0.1124, 'expectedAssists': 0.0383794, 'passPerc': 0.8888888888888888, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d330490'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 7, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 8, 'expectedGoals': 0.0166, 'keyPass': 1, 'expectedAssists': 0.00997566, 'passPerc': 0.7272727272727273, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877483201ea30d33049d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 12, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 5, 'goalsPrevented': -0.6624, 'passPerc': 0.7058823529411765, 'longballsPerc': 0.4444444444444444}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33049e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 31, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelWon': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 7, 'expectedAssists': 0.0645981, 'passPerc': 0.8157894736842105, 'longballsPerc': 0.4}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d33049f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 34, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 1, 'duelWon': 5, 'blockedScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 2, 'ownGoals': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 9, 'expectedGoals': 0.083, 'expectedAssists': 0.00702503, 'passPerc': 0.7906976744186046, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3304a0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 41, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 10, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 4, 'expectedGoals': 0.1696, 'expectedAssists': 0.0055385, 'passPerc': 0.9111111111111111, 'longballsPerc': 0.7142857142857143}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3304a1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 29, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'totalContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 86, 'touches': 63, 'possessionLostCtrl': 14, 'expectedGoals': 0.037, 'keyPass': 1, 'expectedAssists': 0.136775, 'passPerc': 0.7837837837837838, 'longballsPerc': 0.16666666666666666}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3304a3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 85, 'touches': 57, 'possessionLostCtrl': 11, 'expectedGoals': 0.0459, 'keyPass': 5, 'expectedAssists': 0.467567, 'passPerc': 0.8048780487804879, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3304a5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 41, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 15, 'expectedGoals': 0.2397, 'keyPass': 6, 'expectedAssists': 0.603205, 'passPerc': 0.8541666666666666, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3304a6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 4, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 8, 'expectedGoals': 0.6879, 'keyPass': 3, 'expectedAssists': 0.285181, 'passPerc': 0.8947368421052632, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'ayoze-perez', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877483201ea30d3304a7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 10, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 8, 'duelWon': 6, 'dispossessed': 2, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 14, 'expectedGoals': 0.3458, 'expectedAssists': 0.0104373, 'passPerc': 0.5882352941176471, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'thierno-barry', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304b0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 6, 'passPerc': 0.75, 'longballsPerc': 0.16666666666666666}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304b2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 71, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 6, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 9, 'expectedAssists': 0.0071601, 'passPerc': 0.8875, 'longballsPerc': 0.2857142857142857}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304b3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 73, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 2, 'expectedGoals': 0.0363, 'expectedAssists': 0.00906451, 'passPerc': 0.9864864864864865, 'longballsPerc': 0.8}, 'team': 'Real Betis', 'name': 'natan', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304b4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 67, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 102, 'possessionLostCtrl': 15, 'expectedGoals': 0.0441, 'keyPass': 1, 'expectedAssists': 0.0333682, 'passPerc': 0.9054054054054054, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304b5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 70, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 4, 'challengeLost': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 6, 'expectedGoals': 0.0362, 'keyPass': 1, 'expectedAssists': 0.0494389, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.75}, 'team': 'Real Betis', 'name': 'marc-roca', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304b8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 45, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 87, 'touches': 74, 'possessionLostCtrl': 19, 'expectedGoals': 0.0173, 'keyPass': 2, 'expectedAssists': 0.0802874, 'passPerc': 0.8490566037735849, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304b9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 38, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 6, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 4, 'goals': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 25, 'expectedGoals': 1.2396, 'expectedAssists': 0.0415021, 'passPerc': 0.7169811320754716, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304c7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 12, 'totalLongBalls': 29, 'accurateLongBalls': 9, 'goalAssist': 0, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 20, 'goalsPrevented': 0.3714, 'passPerc': 0.375, 'longballsPerc': 0.3103448275862069}, 'team': 'Leganés', 'name': 'juan-soriano', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304c8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'interceptionWon': 2, 'lastManTackle': 1, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 9, 'passPerc': 0.7419354838709677, 'longballsPerc': 0.2}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304ca'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 32, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 6, 'totalClearance': 2, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 3, 'passPerc': 0.9142857142857143, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304cb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 22, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 8, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 4, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 5, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 18, 'keyPass': 1, 'expectedAssists': 0.0665739, 'passPerc': 0.7096774193548387, 'longballsPerc': 0.4}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304cc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 1, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'fouls': 5, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 6, 'expectedGoals': 0.0686, 'expectedAssists': 0.00666111, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.3333333333333333}, 'team': 'Leganés', 'name': 'darko-brasanac', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304d1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 14, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 7, 'duelLost': 8, 'duelWon': 8, 'totalClearance': 4, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 13, 'expectedAssists': 0.0073316, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'sebastien-haller', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304de'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 30, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 2, 'goalsPrevented': 0.025, 'passPerc': 0.9375, 'longballsPerc': 0.8}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304df'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 52, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'lastManTackle': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 17, 'expectedAssists': 0.0273054, 'passPerc': 0.8813559322033898, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'daniel-carvajal', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304e0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 57, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 4, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 6, 'expectedGoals': 0.1978, 'keyPass': 1, 'expectedAssists': 0.0223584, 'passPerc': 0.9193548387096774, 'longballsPerc': 0.4}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304e1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 67, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 8, 'expectedGoals': 0.0523, 'expectedAssists': 0.0162151, 'passPerc': 0.9054054054054054, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304e3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 56, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 1, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 12, 'expectedGoals': 0.0631, 'keyPass': 3, 'expectedAssists': 0.495096, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.7142857142857143}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304e4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 66, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 10, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'outfielderBlock': 2, 'interceptionWon': 4, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 90, 'possessionLostCtrl': 8, 'expectedGoals': 0.0786, 'keyPass': 1, 'expectedAssists': 0.0445303, 'passPerc': 0.9295774647887324, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304e6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 35, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 4, 'aerialLost': 1, 'duelLost': 8, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 89, 'touches': 63, 'possessionLostCtrl': 11, 'expectedGoals': 0.0473, 'keyPass': 5, 'expectedAssists': 0.422235, 'passPerc': 0.8974358974358975, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'rodrygo', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304e7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 22, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 5, 'goals': 2, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 84, 'touches': 49, 'possessionLostCtrl': 10, 'expectedGoals': 1.6972, 'keyPass': 1, 'expectedAssists': 0.041768, 'passPerc': 0.8148148148148148, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 8.8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304e8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 34, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 2, 'blockedScoringAttempt': 2, 'hitWoodwork': 1, 'wasFouled': 5, 'fouls': 2, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 16, 'expectedGoals': 0.0856, 'keyPass': 4, 'expectedAssists': 0.262097, 'passPerc': 0.8292682926829268, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d3304f2'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 13, 'totalLongBalls': 12, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 1, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 5, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 10, 'goalsPrevented': 0.1124, 'passPerc': 0.5652173913043478, 'longballsPerc': 0.16666666666666666}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304f3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 36, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 9, 'keyPass': 2, 'expectedAssists': 0.177609, 'passPerc': 0.9230769230769231, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304f4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 4, 'outfielderBlock': 5, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 4, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.2}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304f5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 19, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 3, 'duelWon': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 3, 'passPerc': 0.8636363636363636, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'natan', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304f6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 36, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 6, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 2, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 15, 'expectedGoals': 0.0527, 'keyPass': 1, 'expectedAssists': 0.221714, 'passPerc': 0.782608695652174, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304f7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 44, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 4, 'expectedGoals': 0.0496, 'keyPass': 1, 'expectedAssists': 0.213871, 'passPerc': 0.9361702127659575, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'marc-roca', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304fa'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 42, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'challengeLost': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 83, 'touches': 54, 'possessionLostCtrl': 10, 'expectedGoals': 0.0614, 'keyPass': 2, 'expectedAssists': 0.035392, 'passPerc': 0.8936170212765957, 'longballsPerc': 0.75}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d3304fb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 11, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 3, 'interceptionWon': 1, 'totalTackle': 6, 'wasFouled': 1, 'minutesPlayed': 83, 'touches': 50, 'possessionLostCtrl': 12, 'expectedGoals': 0.2596, 'keyPass': 1, 'expectedAssists': 0.0244742, 'passPerc': 0.7777777777777778, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330509'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'goodHighClaim': 1, 'minutesPlayed': 90, 'touches': 15, 'possessionLostCtrl': 5, 'passPerc': 0.6363636363636364, 'longballsPerc': 0.3333333333333333}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d33050a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 23, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 29, 'expectedGoals': 0.019, 'keyPass': 2, 'expectedAssists': 0.438892, 'passPerc': 0.575, 'longballsPerc': 0.375}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d33050b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 25, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 10, 'expectedAssists': 0.00798958, 'passPerc': 0.7352941176470589, 'longballsPerc': 0.2857142857142857}, 'team': 'Getafe', 'name': 'djene', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d33050c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 36, 'totalLongBalls': 18, 'accurateLongBalls': 11, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 13, 'expectedGoals': 0.0294, 'keyPass': 1, 'expectedAssists': 0.0369044, 'passPerc': 0.75, 'longballsPerc': 0.6111111111111112}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d33050d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 27, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'duelLost': 1, 'duelWon': 7, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 22, 'expectedAssists': 0.0109159, 'passPerc': 0.6428571428571429, 'longballsPerc': 0.2857142857142857}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d33050e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 35, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 9, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 21, 'expectedGoals': 0.0183, 'keyPass': 4, 'expectedAssists': 0.0846605, 'passPerc': 0.7608695652173914, 'longballsPerc': 0.5555555555555556}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330511'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 13, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 9, 'totalContest': 4, 'wonContest': 3, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 89, 'touches': 40, 'possessionLostCtrl': 16, 'expectedGoals': 0.0533, 'keyPass': 3, 'expectedAssists': 0.116275, 'passPerc': 0.65, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330512'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 9, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 12, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 8, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 85, 'touches': 42, 'possessionLostCtrl': 23, 'expectedGoals': 0.0298, 'expectedAssists': 0.006811, 'passPerc': 0.5294117647058824, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'alex-sola', 'rating': 5.9, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330513'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 6, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 5, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 78, 'touches': 17, 'possessionLostCtrl': 7, 'expectedAssists': 0.00683408, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'bertug-ozgur-yildirim', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d33051f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 27, 'totalLongBalls': 25, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 18, 'keyPass': 1, 'goalsPrevented': 0.0822, 'passPerc': 0.6136363636363636, 'longballsPerc': 0.32}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330522'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 33, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 12, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 9, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Sociedad', 'name': 'jon-pacheco', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330525'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 28, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 4, 'outfielderBlock': 3, 'interceptionWon': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 9, 'expectedAssists': 0.0051593, 'passPerc': 0.7777777777777778, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330526'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 6, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 10, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'benat-turrientes', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330527'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 14, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 6, 'duelLost': 9, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 5, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 13, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.25}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877583201ea30d330535'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 10, 'totalLongBalls': 6, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 19, 'possessionLostCtrl': 6, 'goalsPrevented': -0.2803, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330536'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 2, 'totalClearance': 2, 'totalTackle': 2, 'minutesPlayed': 82, 'touches': 50, 'possessionLostCtrl': 11, 'passPerc': 0.84375, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330537'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 51, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 11, 'expectedGoals': 0.084, 'keyPass': 1, 'expectedAssists': 0.00579528, 'passPerc': 0.85, 'longballsPerc': 0.6666666666666666}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330538'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 58, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 5, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 11, 'passPerc': 0.8529411764705882, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'marcao', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330539'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 34, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 3, 'duelLost': 7, 'duelWon': 10, 'challengeLost': 2, 'totalContest': 6, 'wonContest': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 6, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 21, 'expectedGoals': 0.1434, 'keyPass': 4, 'expectedAssists': 0.181948, 'passPerc': 0.8292682926829268, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'valentin-barco', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33053a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 43, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 8, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'fouls': 3, 'minutesPlayed': 82, 'touches': 57, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0157733, 'passPerc': 0.9148936170212766, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'lucien-agoume', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33053b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 52, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 5, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 3, 'expectedGoals': 0.0224, 'expectedAssists': 0.0141227, 'passPerc': 0.9629629629629629, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'albert-sambi-lokonga', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33053e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 39, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 7, 'wonContest': 4, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 20, 'expectedGoals': 0.1223, 'keyPass': 3, 'expectedAssists': 0.12565, 'passPerc': 0.8125, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'chidera-ejuke', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33053f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 10, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 2, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 9, 'expectedGoals': 0.3349, 'keyPass': 1, 'expectedAssists': 0.0712866, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33054c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 25, 'totalLongBalls': 14, 'accurateLongBalls': 6, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 9, 'goalsPrevented': 0.3746, 'passPerc': 0.7575757575757576, 'longballsPerc': 0.42857142857142855}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d33054d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 3, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 89, 'touches': 76, 'possessionLostCtrl': 12, 'expectedGoals': 0.0655, 'keyPass': 1, 'expectedAssists': 0.0131139, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.5714285714285714}, 'team': 'Girona FC', 'name': 'alejandro-frances', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d33054e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 63, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 4, 'expectedGoals': 0.0459, 'keyPass': 1, 'expectedAssists': 0.00734289, 'passPerc': 0.9545454545454546, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d33054f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 86, 'accuratePass': 79, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'duelWon': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0256282, 'passPerc': 0.9186046511627907, 'longballsPerc': 0.5454545454545454}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330550'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 31, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 7, 'expectedGoals': 0.0191, 'keyPass': 1, 'expectedAssists': 0.582873, 'passPerc': 0.9117647058823529, 'longballsPerc': 0.25}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330552'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 6, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 6, 'expectedAssists': 0.00727281, 'passPerc': 0.8857142857142857, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'oriol-romeu', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330555'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'totalContest': 3, 'wonContest': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 7, 'expectedGoals': 0.8344, 'expectedAssists': 0.0183084, 'passPerc': 0.85, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'abel-ruiz', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330556'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 18, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 7, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 6, 'wonContest': 3, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 89, 'touches': 42, 'possessionLostCtrl': 11, 'expectedGoals': 0.0504, 'keyPass': 1, 'expectedAssists': 0.184901, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'bryan-gil', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330563'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 19, 'totalLongBalls': 25, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 17, 'goalsPrevented': 1.0625, 'passPerc': 0.5428571428571428, 'longballsPerc': 0.36}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330564'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 12, 'totalLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 11, 'expectedAssists': 0.0238473, 'passPerc': 0.631578947368421, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330565'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 17, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 7, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 9, 'expectedAssists': 0.0513811, 'passPerc': 0.7083333333333334, 'longballsPerc': 0.16666666666666666}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330566'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'shotOffTarget': 1, 'interceptionWon': 2, 'totalTackle': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 8, 'expectedGoals': 0.0267, 'passPerc': 0.6190476190476191, 'longballsPerc': 0.16666666666666666}, 'team': 'Deportivo Alavés', 'name': 'aleksandar-sedlar', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330567'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0162532, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330568'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 8, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 4, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 2, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 82, 'touches': 31, 'possessionLostCtrl': 12, 'expectedGoals': 0.6738, 'keyPass': 5, 'expectedAssists': 0.289448, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d330569'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 82, 'touches': 26, 'possessionLostCtrl': 3, 'expectedAssists': 0.010785, 'passPerc': 0.8947368421052632, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'jon-guridi', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d33056a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 9, 'expectedGoals': 0.2861, 'keyPass': 1, 'expectedAssists': 0.0346482, 'passPerc': 0.7586206896551724, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877583201ea30d33057a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 24, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 1, 'goalsPrevented': -0.1994, 'passPerc': 0.96, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33057c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 92, 'accuratePass': 81, 'totalLongBalls': 10, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 7, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'totalClearance': 3, 'outfielderBlock': 3, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 106, 'possessionLostCtrl': 11, 'expectedAssists': 0.00829607, 'passPerc': 0.8804347826086957, 'longballsPerc': 0.2}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33057d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 77, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'minutesPlayed': 90, 'touches': 94, 'possessionLostCtrl': 10, 'expectedAssists': 0.00672966, 'passPerc': 0.9058823529411765, 'longballsPerc': 0.4}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d33057e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 34, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 5, 'totalTackle': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 11, 'keyPass': 3, 'expectedAssists': 0.438972, 'passPerc': 0.8292682926829268, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330580'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 55, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 13, 'expectedGoals': 0.0143, 'keyPass': 2, 'expectedAssists': 0.0703441, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.75}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330582'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 58, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 4, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 77, 'touches': 78, 'possessionLostCtrl': 13, 'expectedGoals': 0.0618, 'expectedAssists': 0.0143463, 'passPerc': 0.8787878787878788, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877583201ea30d330584'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 2, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 13, 'expectedGoals': 0.0504, 'keyPass': 2, 'expectedAssists': 0.112975, 'passPerc': 0.7586206896551724, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'oliver-mcburnie', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330591'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 19, 'accurateLongBalls': 9, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 4, 'accurateKeeperSweeper': 4, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 10, 'goalsPrevented': -0.528, 'passPerc': 0.6551724137931034, 'longballsPerc': 0.47368421052631576}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330592'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 59, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 4, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 15, 'expectedAssists': 0.0981423, 'passPerc': 0.8676470588235294, 'longballsPerc': 0.75}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330593'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 46, 'totalLongBalls': 11, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 4, 'totalClearance': 2, 'interceptionWon': 2, 'lastManTackle': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 6, 'expectedAssists': 0.00889824, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.6363636363636364}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330594'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 45, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 4, 'expectedGoals': 0.1267, 'passPerc': 0.9183673469387755, 'longballsPerc': 0.75}, 'team': 'Osasuna', 'name': 'boyomo-flavien', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330595'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 26, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 11, 'expectedGoals': 0.1329, 'expectedAssists': 0.00635358, 'passPerc': 0.8125, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330596'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 49, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 13, 'expectedGoals': 0.0329, 'keyPass': 1, 'expectedAssists': 0.013057, 'passPerc': 0.8166666666666667, 'longballsPerc': 0.625}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330597'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 3, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 5, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 64, 'possessionLostCtrl': 11, 'expectedGoals': 0.347, 'keyPass': 1, 'expectedAssists': 0.0446911, 'passPerc': 0.8695652173913043, 'longballsPerc': 0.8}, 'team': 'Osasuna', 'name': 'ruben-garcia', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330598'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 4, 'fouls': 3, 'minutesPlayed': 88, 'touches': 44, 'possessionLostCtrl': 10, 'expectedGoals': 0.0447, 'keyPass': 2, 'expectedAssists': 0.056084, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330599'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 33, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 5, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 88, 'touches': 44, 'possessionLostCtrl': 2, 'expectedGoals': 0.0299, 'keyPass': 1, 'expectedAssists': 0.0479007, 'passPerc': 0.9428571428571428, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33059b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 11, 'goalAssist': 1, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 6, 'duelWon': 10, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 77, 'touches': 32, 'possessionLostCtrl': 9, 'expectedGoals': 0.174, 'keyPass': 1, 'expectedAssists': 0.451244, 'passPerc': 0.7857142857142857, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3305a8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 24, 'totalLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 4, 'goalsPrevented': -1.0671, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'ivan-villar', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305a9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 44, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0311681, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.36363636363636365}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305aa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 42, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 13, 'expectedAssists': 0.0124535, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'jailson', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305ac'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 36, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 18, 'expectedGoals': 0.0342, 'keyPass': 2, 'expectedAssists': 0.906735, 'passPerc': 0.8372093023255814, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305ae'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 41, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 76, 'touches': 59, 'possessionLostCtrl': 8, 'expectedAssists': 0.0322068, 'passPerc': 0.9111111111111111, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'ilaix-moriba', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305af'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 35, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 17, 'expectedGoals': 0.1057, 'keyPass': 1, 'expectedAssists': 0.0559834, 'passPerc': 0.7954545454545454, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305b0'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 9, 'expectedGoals': 0.2002, 'expectedAssists': 0.0352297, 'passPerc': 0.8285714285714286, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305bf'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 22, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 4, 'goalsPrevented': 0.055, 'passPerc': 0.8461538461538461, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 50, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'shotOffTarget': 2, 'totalClearance': 1, 'totalTackle': 5, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 13, 'expectedGoals': 0.024, 'keyPass': 3, 'expectedAssists': 0.181855, 'passPerc': 0.8771929824561403, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'correia-thierry', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 46, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 5, 'expectedGoals': 0.0568, 'expectedAssists': 0.0085235, 'passPerc': 0.9387755102040817, 'longballsPerc': 0.4}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 53, 'totalLongBalls': 6, 'accurateLongBalls': 6, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 1, 'expectedAssists': 0.00674319, 'passPerc': 0.9814814814814815, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 18, 'expectedGoals': 0.0203, 'keyPass': 1, 'expectedAssists': 0.0982002, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 70, 'totalLongBalls': 10, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalCross': 13, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 95, 'possessionLostCtrl': 19, 'expectedGoals': 0.0396, 'keyPass': 2, 'expectedAssists': 0.104455, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.8}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 8, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'hitWoodwork': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 82, 'touches': 49, 'possessionLostCtrl': 17, 'expectedGoals': 0.372, 'keyPass': 1, 'expectedAssists': 0.047865, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.5}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 82, 'touches': 57, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0527594, 'passPerc': 0.9, 'longballsPerc': 0.3333333333333333}, 'team': 'Valencia', 'name': 'andre-almeida', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305c9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 10, 'goalAssist': 0, 'aerialLost': 7, 'aerialWon': 3, 'duelLost': 9, 'duelWon': 5, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 2, 'goals': 1, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 22, 'possessionLostCtrl': 4, 'expectedGoals': 0.2073, 'keyPass': 1, 'expectedAssists': 0.0193811, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305d6'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 23, 'totalLongBalls': 16, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 9, 'goalsPrevented': 0.9748, 'passPerc': 0.71875, 'longballsPerc': 0.4375}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305d7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 47, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0129892, 'passPerc': 0.9038461538461539, 'longballsPerc': 0.4}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305d8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 54, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 4, 'totalClearance': 9, 'outfielderBlock': 3, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 10, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.3}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305d9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 44, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 3, 'totalClearance': 8, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 7, 'passPerc': 0.88, 'longballsPerc': 0.5714285714285714}, 'team': 'Villarreal', 'name': 'logan-costa', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305da'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 28, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 6, 'expectedGoals': 0.0342, 'keyPass': 1, 'expectedAssists': 0.0184851, 'passPerc': 0.875, 'longballsPerc': 0.8}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305de'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 25, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 3, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 6, 'expectedGoals': 0.0246, 'keyPass': 1, 'expectedAssists': 0.0306861, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305df'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 4, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 8, 'duelWon': 9, 'challengeLost': 1, 'totalContest': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 4, 'fouls': 3, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 12, 'expectedGoals': 0.2403, 'keyPass': 1, 'passPerc': 0.4, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'thierno-barry', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305e0'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 13, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 8, 'challengeLost': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 77, 'touches': 37, 'possessionLostCtrl': 9, 'expectedGoals': 0.1084, 'expectedAssists': 0.0188058, 'passPerc': 0.65, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'ayoze-perez', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3305eb'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 14, 'totalLongBalls': 14, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelWon': 2, 'totalClearance': 2, 'lastManTackle': 1, 'totalTackle': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 11, 'goalsPrevented': 0.1784, 'passPerc': 0.56, 'longballsPerc': 0.21428571428571427}, 'team': 'Leganés', 'name': 'juan-soriano', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305ed'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 62, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 2, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 3, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 9, 'expectedAssists': 0.0056573, 'passPerc': 0.8732394366197183, 'longballsPerc': 0.4}, 'team': 'Leganés', 'name': 'jorge-saenz', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305ee'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 69, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 4, 'totalClearance': 4, 'interceptionWon': 3, 'totalTackle': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 6, 'keyPass': 1, 'passPerc': 0.92, 'longballsPerc': 0.8571428571428571}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305f1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 30, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 12, 'expectedGoals': 0.0312, 'keyPass': 1, 'expectedAssists': 0.0195958, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.75}, 'team': 'Leganés', 'name': 'darko-brasanac', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3305f5'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 8, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 6, 'aerialWon': 5, 'duelLost': 7, 'duelWon': 8, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 3, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 11, 'expectedGoals': 0.1808, 'keyPass': 1, 'expectedAssists': 0.00639259, 'passPerc': 0.5, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'diego-garcia', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330601'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 17, 'totalLongBalls': 17, 'accurateLongBalls': 8, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 9, 'goalsPrevented': 0.0208, 'passPerc': 0.6538461538461539, 'longballsPerc': 0.47058823529411764}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330603'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 38, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 8, 'passPerc': 0.8260869565217391, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330604'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 51, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 7, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 8, 'expectedGoals': 0.0102, 'expectedAssists': 0.0281131, 'passPerc': 0.8793103448275862, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330606'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 35, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 1, 'minutesPlayed': 84, 'touches': 50, 'possessionLostCtrl': 5, 'expectedGoals': 0.0146, 'expectedAssists': 0.00963061, 'passPerc': 0.9210526315789473, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'manu-morlanes', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330607'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 46, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 9, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 12, 'expectedAssists': 0.0121816, 'passPerc': 0.8070175438596491, 'longballsPerc': 0.42857142857142855}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330609'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 3, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 84, 'touches': 45, 'possessionLostCtrl': 14, 'expectedGoals': 0.325, 'keyPass': 1, 'expectedAssists': 0.342197, 'passPerc': 0.7916666666666666, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'dani-rodriguez', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33060b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 5, 'aerialWon': 5, 'duelLost': 11, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 2, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 17, 'expectedGoals': 0.0207, 'keyPass': 3, 'expectedAssists': 0.369316, 'passPerc': 0.625, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330618'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 32, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 4, 'punches': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 3, 'goalsPrevented': -0.4264, 'passPerc': 0.9142857142857143, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330619'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 12, 'passPerc': 0.7878787878787878, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33061a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 43, 'totalLongBalls': 16, 'accurateLongBalls': 8, 'goalAssist': 0, 'duelWon': 5, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 89, 'touches': 70, 'possessionLostCtrl': 13, 'passPerc': 0.7678571428571429, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'fernando-calero', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33061b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 45, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 9, 'totalClearance': 8, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 6, 'expectedAssists': 0.00525969, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33061e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 27, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 11, 'expectedGoals': 0.2557, 'passPerc': 0.7714285714285715, 'longballsPerc': 0.4}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330620'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 19, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 14, 'expectedGoals': 0.4835, 'keyPass': 4, 'expectedAssists': 0.298071, 'passPerc': 0.7307692307692307, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330622'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 8, 'duelLost': 7, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 12, 'expectedGoals': 0.3743, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'alejo-veliz', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33062f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 5, 'goalsPrevented': -0.157, 'passPerc': 0.782608695652174, 'longballsPerc': 0.375}, 'team': 'Rayo Vallecano', 'name': 'dani-cardenas', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330630'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 11, 'expectedGoals': 0.0164, 'keyPass': 1, 'expectedAssists': 0.0474649, 'passPerc': 0.782608695652174, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330631'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 49, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 6, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 7, 'shotOffTarget': 3, 'onTargetScoringAttempt': 2, 'hitWoodwork': 1, 'totalClearance': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 13, 'expectedGoals': 0.2828, 'expectedAssists': 0.0106313, 'passPerc': 0.8032786885245902, 'longballsPerc': 0.42857142857142855}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330632'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 49, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'totalContest': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 7, 'expectedAssists': 0.00951112, 'passPerc': 0.8909090909090909, 'longballsPerc': 0.2}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330635'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 30, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 10, 'expectedAssists': 0.0191316, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6666666666666666}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330638'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 11, 'accurateCross': 3, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 23, 'expectedGoals': 0.099, 'keyPass': 4, 'expectedAssists': 0.114528, 'passPerc': 0.6296296296296297, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'adrian-embarba', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330646'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'challengeLost': 1, 'goodHighClaim': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 4, 'goalsPrevented': 0.4123, 'passPerc': 0.8, 'longballsPerc': 0.3333333333333333}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330647'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 46, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 1, 'duelWon': 2, 'totalContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'errorLeadToAGoal': 1, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0230822, 'passPerc': 0.8518518518518519, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'inigo-lekue', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330648'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 86, 'accuratePass': 76, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 11, 'expectedAssists': 0.0206547, 'passPerc': 0.8837209302325582, 'longballsPerc': 0.25}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330649'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 70, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 8, 'expectedAssists': 0.021854, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33064a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelWon': 3, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 8, 'expectedGoals': 0.0286, 'expectedAssists': 0.0330425, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.3333333333333333}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33064e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 40, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'minutesPlayed': 81, 'touches': 57, 'possessionLostCtrl': 15, 'expectedGoals': 0.032, 'keyPass': 1, 'expectedAssists': 0.0559185, 'passPerc': 0.8695652173913043, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'oihan-sancet', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33064f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 13, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 8, 'wonContest': 1, 'totalTackle': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 17, 'expectedAssists': 0.0457676, 'passPerc': 0.84, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33065d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 6, 'goalsPrevented': 0.0771, 'passPerc': 0.782608695652174, 'longballsPerc': 0.16666666666666666}, 'team': 'Atlético Madrid', 'name': 'juan-musso', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33065e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 60, 'totalLongBalls': 5, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 8, 'expectedAssists': 0.00592665, 'passPerc': 0.8955223880597015, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'robin-le-normand', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33065f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 70, 'totalLongBalls': 10, 'accurateLongBalls': 9, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 1, 'expectedGoals': 0.0603, 'passPerc': 0.9859154929577465, 'longballsPerc': 0.9}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330660'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 49, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.00761526, 'passPerc': 0.8032786885245902, 'longballsPerc': 0.125}, 'team': 'Atlético Madrid', 'name': 'reinildo-mandava', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330661'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 8, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 4, 'errorLeadToAShot': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0222443, 'passPerc': 0.8222222222222222, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330662'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 52, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 2, 'errorLeadToAShot': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 13, 'expectedAssists': 0.010351, 'passPerc': 0.8387096774193549, 'longballsPerc': 0.75}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330663'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 47, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 5, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 88, 'touches': 66, 'possessionLostCtrl': 8, 'expectedAssists': 0.0172567, 'passPerc': 0.8867924528301887, 'longballsPerc': 0.42857142857142855}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330665'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 32, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 83, 'touches': 58, 'possessionLostCtrl': 15, 'expectedGoals': 0.0235, 'keyPass': 3, 'expectedAssists': 0.10579, 'passPerc': 0.7619047619047619, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330673'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 1, 'goalsPrevented': 0.3398, 'passPerc': 0.96, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'marc-andre-ter-stegen', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330674'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 46, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 8, 'expectedGoals': 0.086, 'expectedAssists': 0.0564414, 'passPerc': 0.92, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330676'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 105, 'accuratePass': 95, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 114, 'possessionLostCtrl': 11, 'expectedGoals': 0.0538, 'expectedAssists': 0.0174188, 'passPerc': 0.9047619047619048, 'longballsPerc': 0.4}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330677'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 5, 'expectedAssists': 0.026011, 'passPerc': 0.9487179487179487, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330678'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 30, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 2, 'totalContest': 5, 'wonContest': 4, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 3, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'hitWoodwork': 2, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 83, 'touches': 54, 'possessionLostCtrl': 10, 'expectedGoals': 0.8976, 'keyPass': 1, 'expectedAssists': 0.636785, 'passPerc': 0.9090909090909091, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'dani-olmo', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33067b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 35, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 2, 'totalCross': 1, 'duelLost': 8, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 8, 'wonContest': 2, 'bigChanceCreated': 3, 'totalTackle': 5, 'wasFouled': 3, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 15, 'keyPass': 4, 'expectedAssists': 0.531652, 'passPerc': 0.8536585365853658, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33067d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 29, 'goalAssist': 1, 'totalCross': 11, 'accurateCross': 4, 'duelLost': 1, 'duelWon': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 5, 'blockedScoringAttempt': 1, 'goals': 3, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 15, 'expectedGoals': 2.2145, 'keyPass': 3, 'expectedAssists': 0.501102, 'passPerc': 0.8285714285714286, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 10, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330688'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 17, 'totalLongBalls': 24, 'accurateLongBalls': 10, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 4, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 14, 'goalsPrevented': -2.9989, 'passPerc': 0.5483870967741935, 'longballsPerc': 0.4166666666666667}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330689'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelWon': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 9, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 5.6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33068a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 2, 'totalClearance': 7, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 6, 'passPerc': 0.84375, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 5.6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33068b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 7, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 7, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'javi-sanchez', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33068c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 16, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 8, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 7, 'fouls': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 7, 'passPerc': 0.8421052631578947, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33068d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 20, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 3, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 3, 'passPerc': 0.9090909090909091, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33068f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 18, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 88, 'touches': 31, 'possessionLostCtrl': 7, 'expectedGoals': 0.134, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330691'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'totalOffside': 1, 'minutesPlayed': 88, 'touches': 30, 'possessionLostCtrl': 8, 'expectedGoals': 0.3818, 'keyPass': 1, 'expectedAssists': 0.0995886, 'passPerc': 0.7777777777777778, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d33069f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 30, 'totalLongBalls': 15, 'accurateLongBalls': 6, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 9, 'goalsPrevented': 0.6082, 'passPerc': 0.7692307692307693, 'longballsPerc': 0.4}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 35, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 12, 'totalContest': 4, 'wonContest': 4, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 6, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.216953, 'passPerc': 0.7446808510638298, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Betis', 'name': 'hector-bellerin', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 50, 'totalLongBalls': 13, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 16, 'expectedGoals': 0.352, 'keyPass': 1, 'expectedAssists': 0.00654104, 'passPerc': 0.7575757575757576, 'longballsPerc': 0.23076923076923078}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 56, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 5, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 10, 'expectedAssists': 0.0064421, 'passPerc': 0.8615384615384616, 'longballsPerc': 0.5}, 'team': 'Real Betis', 'name': 'natan', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 36, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 8, 'expectedAssists': 0.00741571, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.6}, 'team': 'Real Betis', 'name': 'sergi-altimira', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 41, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 4, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 8, 'keyPass': 3, 'expectedAssists': 0.0265317, 'passPerc': 0.9318181818181818, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'marc-roca', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 28, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 77, 'touches': 59, 'possessionLostCtrl': 22, 'expectedGoals': 0.1308, 'expectedAssists': 0.10985, 'passPerc': 0.7, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 3, 'bigChanceCreated': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'goals': 2, 'totalClearance': 1, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 78, 'touches': 69, 'possessionLostCtrl': 16, 'expectedGoals': 0.9505, 'keyPass': 4, 'expectedAssists': 0.54086, 'passPerc': 0.8409090909090909, 'longballsPerc': 0.75}, 'team': 'Real Betis', 'name': 'lo-celso-giovani', 'rating': 9.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 4, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 86, 'touches': 55, 'possessionLostCtrl': 11, 'expectedGoals': 0.4708, 'expectedAssists': 0.0188544, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'abdessamad-ezzalzouli', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306a9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 10, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 6, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 3, 'minutesPlayed': 86, 'touches': 34, 'possessionLostCtrl': 12, 'expectedGoals': 0.9995, 'keyPass': 2, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'vitor-roque', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306b6'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 5, 'totalLongBalls': 18, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 4, 'lastManTackle': 1, 'totalTackle': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 6, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 13, 'goalsPrevented': 0.1157, 'passPerc': 0.2777777777777778, 'longballsPerc': 0.2777777777777778}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 7.8, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306b7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 13, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 10, 'duelWon': 3, 'challengeLost': 5, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 15, 'keyPass': 2, 'expectedAssists': 0.2368, 'passPerc': 0.6190476190476191, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306b8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 15, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 2, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 9, 'expectedGoals': 0.0261, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306b9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 12, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'totalContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 1, 'errorLeadToAShot': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 10, 'expectedGoals': 0.0828, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.5833333333333334}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306ba'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 16, 'totalLongBalls': 4, 'goalAssist': 1, 'totalCross': 7, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 3, 'dispossessed': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 17, 'expectedGoals': 0.0103, 'keyPass': 3, 'expectedAssists': 0.275997, 'passPerc': 0.5925925925925926, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306bb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 16, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 4, 'minutesPlayed': 75, 'touches': 31, 'possessionLostCtrl': 6, 'expectedGoals': 0.0667, 'keyPass': 1, 'expectedAssists': 0.0302828, 'passPerc': 0.8421052631578947, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306bc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 15, 'expectedGoals': 0.1047, 'keyPass': 1, 'expectedAssists': 0.0256674, 'passPerc': 0.7586206896551724, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306be'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 75, 'touches': 31, 'possessionLostCtrl': 2, 'expectedAssists': 0.0179164, 'passPerc': 0.9, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'carles-alena', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306c0'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 6, 'accuratePass': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 75, 'touches': 23, 'possessionLostCtrl': 9, 'passPerc': 0.5, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'bertug-ozgur-yildirim', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d3306cd'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 20, 'totalLongBalls': 20, 'accurateLongBalls': 7, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 7, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 13, 'goalsPrevented': 0.4051, 'passPerc': 0.6060606060606061, 'longballsPerc': 0.35}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306ce'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 3, 'dispossessed': 1, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 6, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 9, 'expectedAssists': 0.0148529, 'passPerc': 0.8709677419354839, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'park-marvin', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306cf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 32, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'penaltyConceded': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 6, 'passPerc': 0.8648648648648649, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306d0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 7, 'outfielderBlock': 3, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 6, 'passPerc': 0.8387096774193549, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306d1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 33, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 9, 'expectedGoals': 0.012, 'passPerc': 0.8918918918918919, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306d2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'duelWon': 4, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 81, 'touches': 69, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.0295959, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.75}, 'team': 'Las Palmas', 'name': 'jose-campana', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306d3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 78, 'touches': 42, 'possessionLostCtrl': 8, 'expectedGoals': 0.3283, 'expectedAssists': 0.0115183, 'passPerc': 0.85, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'sandro-ramirez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306d4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 44, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 9, 'expectedGoals': 0.0268, 'keyPass': 1, 'expectedAssists': 0.133568, 'passPerc': 0.8627450980392157, 'longballsPerc': 0.5}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306d5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 56, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 81, 'touches': 73, 'possessionLostCtrl': 9, 'expectedGoals': 0.0465, 'keyPass': 1, 'expectedAssists': 0.178145, 'passPerc': 0.9032258064516129, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306d7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 20, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 78, 'touches': 42, 'possessionLostCtrl': 10, 'expectedGoals': 0.0618, 'keyPass': 2, 'expectedAssists': 0.00801006, 'passPerc': 0.7692307692307693, 'longballsPerc': 1.0}, 'team': 'Las Palmas', 'name': 'oliver-mcburnie', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306e4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 24, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 3, 'totalClearance': 3, 'goodHighClaim': 1, 'saves': 1, 'punches': 3, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 3, 'goalsPrevented': -0.1527, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.4}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306e5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 39, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 5, 'duelWon': 8, 'challengeLost': 2, 'totalContest': 5, 'wonContest': 4, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 76, 'touches': 67, 'possessionLostCtrl': 9, 'keyPass': 2, 'expectedAssists': 0.438274, 'passPerc': 0.9069767441860465, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'lucas-vazquez', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306e6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 55, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0137856, 'passPerc': 0.8870967741935484, 'longballsPerc': 0.7142857142857143}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306e7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 58, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 4, 'expectedGoals': 0.1785, 'expectedAssists': 0.0164435, 'passPerc': 0.9508196721311475, 'longballsPerc': 0.8571428571428571}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306e9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 54, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 9, 'expectedGoals': 0.1734, 'keyPass': 4, 'expectedAssists': 0.103767, 'passPerc': 0.9, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 8.1, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306ea'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 78, 'accuratePass': 69, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'interceptionWon': 4, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 11, 'expectedGoals': 0.2867, 'expectedAssists': 0.085803, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306ed'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 8, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 4, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 86, 'touches': 44, 'possessionLostCtrl': 15, 'expectedGoals': 1.2979, 'keyPass': 2, 'expectedAssists': 0.126347, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306ee'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 7, 'duelWon': 6, 'dispossessed': 2, 'totalContest': 10, 'wonContest': 5, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 12, 'expectedGoals': 0.5235, 'expectedAssists': 0.10782, 'passPerc': 0.85, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877683201ea30d3306f8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 22, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'goodHighClaim': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 2, 'passPerc': 0.9565217391304348, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306f9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 62, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 4, 'blockedScoringAttempt': 1, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 11, 'expectedGoals': 0.0249, 'expectedAssists': 0.0294045, 'passPerc': 0.8985507246376812, 'longballsPerc': 0.5}, 'team': 'Girona FC', 'name': 'alejandro-frances', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306fa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 95, 'accuratePass': 85, 'totalLongBalls': 10, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'minutesPlayed': 90, 'touches': 101, 'possessionLostCtrl': 10, 'expectedAssists': 0.0255768, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.4}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306fb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 92, 'accuratePass': 90, 'totalLongBalls': 7, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.369689, 'passPerc': 0.9782608695652174, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306fc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 36, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 2, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 15, 'keyPass': 1, 'expectedAssists': 0.0490384, 'passPerc': 0.9473684210526315, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306fd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 35, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'wasFouled': 1, 'minutesPlayed': 81, 'touches': 57, 'possessionLostCtrl': 14, 'expectedGoals': 0.6136, 'keyPass': 1, 'expectedAssists': 0.138474, 'passPerc': 0.7446808510638298, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'viktor-tsygankov', 'rating': 8.5, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d3306ff'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 58, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 10, 'expectedAssists': 0.0461954, 'passPerc': 0.9206349206349206, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d330700'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 22, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 1, 'wasFouled': 1, 'minutesPlayed': 81, 'touches': 41, 'possessionLostCtrl': 10, 'expectedGoals': 0.331, 'keyPass': 1, 'expectedAssists': 0.181376, 'passPerc': 0.9166666666666666, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'bryan-gil', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877683201ea30d33070f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 40, 'totalLongBalls': 16, 'accurateLongBalls': 8, 'goalAssist': 0, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 8, 'goalsPrevented': -0.5687, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330710'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 9, 'expectedAssists': 0.00582831, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.3333333333333333}, 'team': 'Osasuna', 'name': 'nacho-vidal', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330711'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 40, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 2, 'passPerc': 0.9523809523809523, 'longballsPerc': 0.6666666666666666}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330712'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 48, 'totalLongBalls': 5, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 14, 'passPerc': 0.7868852459016393, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'herrando-jorge', 'rating': 5.8, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330713'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 8, 'expectedAssists': 0.0538755, 'passPerc': 0.8387096774193549, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'juan-cruz', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330714'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 32, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'errorLeadToAGoal': 1, 'wasFouled': 2, 'minutesPlayed': 85, 'touches': 48, 'possessionLostCtrl': 6, 'passPerc': 0.9142857142857143, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877683201ea30d330715'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 41, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'interceptionWon': 4, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 10, 'expectedAssists': 0.0342582, 'passPerc': 0.8367346938775511, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'moi-gomez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d330725'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 18, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 3, 'goalsPrevented': 0.0345, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330727'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 48, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 7, 'expectedGoals': 0.0222, 'keyPass': 1, 'expectedAssists': 0.00739488, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.75}, 'team': 'Atlético Madrid', 'name': 'robin-le-normand', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330728'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 71, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 6, 'challengeLost': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 7, 'expectedAssists': 0.00779676, 'passPerc': 0.9342105263157895, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'axel-witsel', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330729'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 54, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 10, 'expectedGoals': 0.137, 'expectedAssists': 0.0321752, 'passPerc': 0.9, 'longballsPerc': 0.25}, 'team': 'Atlético Madrid', 'name': 'cesar-azpilicueta', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33072a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 38, 'goalAssist': 0, 'totalCross': 11, 'accurateCross': 2, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 3, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 13, 'expectedGoals': 0.2747, 'keyPass': 4, 'expectedAssists': 0.42172, 'passPerc': 0.95, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'rodrigo-riquelme', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33072c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 91, 'accuratePass': 82, 'totalLongBalls': 10, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 105, 'possessionLostCtrl': 12, 'expectedGoals': 0.2359, 'expectedAssists': 0.0290428, 'passPerc': 0.9010989010989011, 'longballsPerc': 0.8}, 'team': 'Atlético Madrid', 'name': 'koke', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33073c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 19, 'totalLongBalls': 30, 'accurateLongBalls': 9, 'goalAssist': 0, 'errorLeadToAShot': 1, 'savedShotsFromInsideTheBox': 6, 'saves': 7, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 22, 'goalsPrevented': 1.3646, 'passPerc': 0.475, 'longballsPerc': 0.3}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 8.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33073d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 6, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 10, 'expectedGoals': 0.0367, 'keyPass': 1, 'expectedAssists': 0.192098, 'passPerc': 0.8095238095238095, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'alvaro-tejero', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33073e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 3, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 6, 'passPerc': 0.84375, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33073f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 42, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 11, 'outfielderBlock': 2, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 3, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.75}, 'team': 'Espanyol', 'name': 'fernando-calero', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330742'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 7, 'expectedGoals': 0.0084, 'keyPass': 1, 'expectedAssists': 0.302978, 'passPerc': 0.84, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330744'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 32, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 87, 'touches': 54, 'possessionLostCtrl': 11, 'expectedGoals': 0.0786, 'expectedAssists': 0.0335404, 'passPerc': 0.8, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'alvaro-aguado', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330746'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 21, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 5, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 7, 'expectedGoals': 0.3758, 'keyPass': 1, 'expectedAssists': 0.0154106, 'passPerc': 0.84, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330753'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 18, 'totalLongBalls': 26, 'accurateLongBalls': 12, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 15, 'goalsPrevented': 0.2041, 'passPerc': 0.5625, 'longballsPerc': 0.46153846153846156}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d330754'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 12, 'expectedAssists': 0.0462513, 'passPerc': 0.7435897435897436, 'longballsPerc': 0.2}, 'team': 'Real Sociedad', 'name': 'hamari-traore', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d330755'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 36, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'totalClearance': 3, 'interceptionWon': 1, 'errorLeadToAShot': 1, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 81, 'touches': 48, 'possessionLostCtrl': 5, 'passPerc': 0.9230769230769231, 'longballsPerc': 0.25}, 'team': 'Real Sociedad', 'name': 'igor-zubeldia', 'rating': 5.7, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d330757'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 21, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 9, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'lastManTackle': 1, 'totalTackle': 4, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 9, 'expectedGoals': 0.0141, 'expectedAssists': 0.00671913, 'passPerc': 0.9130434782608695, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d330758'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 6, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 4, 'shotOffTarget': 1, 'totalTackle': 2, 'wasFouled': 5, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 20, 'expectedGoals': 0.1973, 'keyPass': 1, 'expectedAssists': 0.0374158, 'passPerc': 0.6875, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'kubo-takefusa', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d330759'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 2, 'duelWon': 7, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 11, 'expectedGoals': 0.114, 'keyPass': 1, 'expectedAssists': 0.034119, 'passPerc': 0.7959183673469388, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33075a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 81, 'touches': 42, 'possessionLostCtrl': 11, 'expectedGoals': 0.465, 'keyPass': 1, 'expectedAssists': 0.00955553, 'passPerc': 0.7666666666666667, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33075b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 15, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 9, 'accurateCross': 6, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 2, 'totalClearance': 2, 'fouls': 1, 'minutesPlayed': 81, 'touches': 40, 'possessionLostCtrl': 11, 'keyPass': 4, 'expectedAssists': 0.557945, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33076a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 11, 'totalLongBalls': 16, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 10, 'goalsPrevented': -0.5016, 'passPerc': 0.5238095238095238, 'longballsPerc': 0.375}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d33076b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 6, 'duelLost': 8, 'duelWon': 2, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 8, 'expectedAssists': 0.0191839, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'hugo-novoa-ramos', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d33076c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 31, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 7, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 2, 'penaltyWon': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0146693, 'passPerc': 0.775, 'longballsPerc': 0.2727272727272727}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d33076d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 8, 'expectedGoals': 0.0621, 'keyPass': 1, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.42857142857142855}, 'team': 'Deportivo Alavés', 'name': 'adrian-hernandez-pica', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d33076f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 33, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 8, 'duelWon': 2, 'challengeLost': 3, 'dispossessed': 2, 'totalClearance': 5, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 11, 'expectedAssists': 0.0250477, 'passPerc': 0.8048780487804879, 'longballsPerc': 0.6666666666666666}, 'team': 'Deportivo Alavés', 'name': 'ander-guevara', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330771'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 10, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 10, 'accurateCross': 3, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 48, 'possessionLostCtrl': 21, 'expectedGoals': 0.0168, 'keyPass': 3, 'expectedAssists': 0.15388, 'passPerc': 0.5555555555555556, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330772'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 34, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 8, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 7, 'expectedGoals': 0.0134, 'keyPass': 2, 'expectedAssists': 0.0804838, 'passPerc': 0.85, 'longballsPerc': 0.4}, 'team': 'Deportivo Alavés', 'name': 'jon-guridi', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330781'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 23, 'totalLongBalls': 17, 'accurateLongBalls': 7, 'goalAssist': 0, 'goodHighClaim': 1, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 10, 'passPerc': 0.696969696969697, 'longballsPerc': 0.4117647058823529}, 'team': 'Athletic Club', 'name': 'julen-agirrezabala', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330782'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 33, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 9, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.0729604, 'passPerc': 0.75, 'longballsPerc': 0.2}, 'team': 'Athletic Club', 'name': 'oscar-de-marcos', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330783'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 68, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 8, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 8, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 94, 'possessionLostCtrl': 11, 'expectedAssists': 0.00843235, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.5714285714285714}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330784'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 43, 'totalLongBalls': 12, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 15, 'expectedAssists': 0.00568424, 'passPerc': 0.7543859649122807, 'longballsPerc': 0.3333333333333333}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330785'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 8, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 79, 'touches': 45, 'possessionLostCtrl': 10, 'expectedAssists': 0.0808225, 'passPerc': 0.76, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'adama-boiro', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330786'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 39, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 3, 'dispossessed': 1, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.0707869, 'passPerc': 0.8863636363636364, 'longballsPerc': 0.5714285714285714}, 'team': 'Athletic Club', 'name': 'mikel-jauregizar', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330788'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 14, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 17, 'expectedGoals': 0.2337, 'keyPass': 2, 'expectedAssists': 0.144653, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330798'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 23, 'totalLongBalls': 17, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 11, 'goalsPrevented': -0.177, 'passPerc': 0.6764705882352942, 'longballsPerc': 0.35294117647058826}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d330799'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 28, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 66, 'possessionLostCtrl': 19, 'expectedAssists': 0.00747958, 'passPerc': 0.7, 'longballsPerc': 0.5555555555555556}, 'team': 'Valencia', 'name': 'dimitri-foulquier', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33079a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 46, 'totalLongBalls': 8, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'challengeLost': 2, 'totalClearance': 9, 'outfielderBlock': 2, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 9, 'passPerc': 0.8518518518518519, 'longballsPerc': 0.25}, 'team': 'Valencia', 'name': 'cesar-tarrega', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33079b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 53, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 8, 'passPerc': 0.8688524590163934, 'longballsPerc': 0.6}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33079c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 22, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 11, 'challengeLost': 1, 'totalContest': 4, 'wonContest': 3, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 2, 'totalTackle': 6, 'wasFouled': 1, 'minutesPlayed': 89, 'touches': 75, 'possessionLostCtrl': 18, 'expectedGoals': 0.026, 'expectedAssists': 0.00662263, 'passPerc': 0.6111111111111112, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'jesus-vazquez', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33079d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 21, 'goalAssist': 0, 'totalCross': 4, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 82, 'touches': 35, 'possessionLostCtrl': 10, 'expectedGoals': 0.0508, 'expectedAssists': 0.0164242, 'passPerc': 0.84, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33079e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 43, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 82, 'touches': 70, 'possessionLostCtrl': 18, 'expectedAssists': 0.0117707, 'passPerc': 0.7678571428571429, 'longballsPerc': 0.4444444444444444}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d33079f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 9, 'expectedAssists': 0.0270305, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.6666666666666666}, 'team': 'Valencia', 'name': 'hugo-guillamon', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307a0'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 3, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 16, 'expectedAssists': 0.00503671, 'passPerc': 0.7619047619047619, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'luis-rioja', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307a1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 10, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 28, 'possessionLostCtrl': 13, 'expectedAssists': 0.00595186, 'passPerc': 0.625, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307ae'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 24, 'totalLongBalls': 6, 'accurateLongBalls': 6, 'goalAssist': 0, 'saves': 1, 'minutesPlayed': 90, 'touches': 30, 'goalsPrevented': 0.0186, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307af'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 29, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 17, 'keyPass': 2, 'expectedAssists': 0.118407, 'passPerc': 0.725, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307b0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 78, 'accuratePass': 71, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 3, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 87, 'possessionLostCtrl': 8, 'passPerc': 0.9102564102564102, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Valladolid', 'name': 'javi-sanchez', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307b1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 73, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'shotOffTarget': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 6, 'expectedGoals': 0.03, 'passPerc': 0.9240506329113924, 'longballsPerc': 0.25}, 'team': 'Real Valladolid', 'name': 'boyomo-flavien', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307b2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 43, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0917675, 'passPerc': 0.8958333333333334, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307b4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 55, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 9, 'expectedAssists': 0.00773886, 'passPerc': 0.873015873015873, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'juric-stanko', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307b5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 6, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 3, 'onTargetScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 89, 'touches': 55, 'possessionLostCtrl': 13, 'expectedGoals': 0.1497, 'expectedAssists': 0.0138602, 'passPerc': 0.8928571428571429, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Valladolid', 'name': 'amallah-selim', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307b8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 22, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 4, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 81, 'touches': 58, 'possessionLostCtrl': 20, 'expectedGoals': 0.1893, 'keyPass': 1, 'expectedAssists': 0.200713, 'passPerc': 0.7586206896551724, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307c5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 9, 'totalLongBalls': 23, 'accurateLongBalls': 6, 'goalAssist': 0, 'goodHighClaim': 3, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 17, 'goalsPrevented': 0.4378, 'passPerc': 0.34615384615384615, 'longballsPerc': 0.2608695652173913}, 'team': 'Leganés', 'name': 'juan-soriano', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307c6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0105399, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307c7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 52, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 4, 'totalClearance': 5, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 8, 'expectedAssists': 0.0102973, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.4166666666666667}, 'team': 'Leganés', 'name': 'jorge-saenz', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307c8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 45, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 2, 'totalClearance': 5, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 3, 'keyPass': 1, 'passPerc': 0.9375, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307c9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 28, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 12, 'expectedGoals': 0.0628, 'expectedAssists': 0.00602727, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.42857142857142855}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307ca'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 85, 'touches': 53, 'possessionLostCtrl': 3, 'expectedGoals': 0.0237, 'expectedAssists': 0.0112168, 'passPerc': 0.9512195121951219, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307cf'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 6, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 9, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'blockedScoringAttempt': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 22, 'possessionLostCtrl': 10, 'expectedGoals': 0.0201, 'expectedAssists': 0.0101814, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 6.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d3307dc'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 14, 'totalLongBalls': 22, 'accurateLongBalls': 8, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 14, 'expectedAssists': 0.00527272, 'goalsPrevented': -0.3022, 'passPerc': 0.5, 'longballsPerc': 0.36363636363636365}, 'team': 'Rayo Vallecano', 'name': 'dani-cardenas', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307dd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 10, 'expectedAssists': 0.00823777, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'ivan-balliu', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307de'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 22, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 3, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 9, 'expectedAssists': 0.035317, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307df'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 21, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'duelWon': 1, 'totalClearance': 7, 'outfielderBlock': 3, 'interceptionWon': 5, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 11, 'expectedAssists': 0.0056082, 'passPerc': 0.7241379310344828, 'longballsPerc': 0.375}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307e0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 13, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 6, 'duelLost': 12, 'duelWon': 10, 'challengeLost': 6, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 6, 'wasFouled': 3, 'fouls': 6, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 13, 'expectedGoals': 0.0382, 'passPerc': 0.7647058823529411, 'longballsPerc': 0.6}, 'team': 'Rayo Vallecano', 'name': 'alfonso-espino', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307e6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 10, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 13, 'expectedGoals': 0.0562, 'expectedAssists': 0.00578531, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Rayo Vallecano', 'name': 'isi-palazon', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877783201ea30d3307f3'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 1, 'errorLeadToAShot': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 5, 'goalsPrevented': -0.6391, 'passPerc': 0.8214285714285714, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'marc-andre-ter-stegen', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307f4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 48, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 7, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 94, 'possessionLostCtrl': 21, 'expectedGoals': 0.0934, 'keyPass': 2, 'expectedAssists': 0.0996779, 'passPerc': 0.7868852459016393, 'longballsPerc': 0.2}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307f5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 71, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 2, 'duelWon': 5, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 3, 'expectedGoals': 0.0513, 'expectedAssists': 0.00991763, 'passPerc': 0.9594594594594594, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307f6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 47, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 3, 'expectedGoals': 0.0578, 'keyPass': 1, 'expectedAssists': 0.0160648, 'passPerc': 0.94, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307f8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 48, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 89, 'touches': 74, 'possessionLostCtrl': 10, 'expectedGoals': 0.0672, 'keyPass': 1, 'expectedAssists': 0.0108248, 'passPerc': 0.8727272727272727, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'marc-bernal', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307f9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 51, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 89, 'touches': 84, 'possessionLostCtrl': 15, 'expectedGoals': 0.3163, 'keyPass': 3, 'expectedAssists': 0.451218, 'passPerc': 0.8360655737704918, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307fa'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 41, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 11, 'wonContest': 7, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 4, 'interceptionWon': 1, 'wasFouled': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 82, 'possessionLostCtrl': 20, 'expectedGoals': 0.2744, 'keyPass': 4, 'expectedAssists': 0.458288, 'passPerc': 0.7592592592592593, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307fb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 25, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 3, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 20, 'expectedGoals': 0.2775, 'keyPass': 3, 'expectedAssists': 0.13397, 'passPerc': 0.6944444444444444, 'longballsPerc': 0.3333333333333333}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d3307fd'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 10, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 14, 'expectedGoals': 0.0466, 'expectedAssists': 0.0150434, 'passPerc': 0.5555555555555556, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877783201ea30d330809'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 16, 'totalLongBalls': 12, 'accurateLongBalls': 6, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 7, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 6, 'goalsPrevented': 0.9776, 'passPerc': 0.7272727272727273, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'leo-roman', 'rating': 8.5, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33080a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 3, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 18, 'keyPass': 1, 'expectedAssists': 0.07399, 'passPerc': 0.8275862068965517, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33080b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 46, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 2, 'totalClearance': 8, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 7, 'expectedAssists': 0.00502392, 'passPerc': 0.8679245283018868, 'longballsPerc': 0.625}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33080c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 42, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 6, 'expectedGoals': 0.0287, 'expectedAssists': 0.00674951, 'passPerc': 0.875, 'longballsPerc': 0.6}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33080d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 23, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 15, 'expectedGoals': 0.0105, 'keyPass': 1, 'expectedAssists': 0.0525053, 'passPerc': 0.7419354838709677, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33080e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 44, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 2, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0279504, 'passPerc': 0.88, 'longballsPerc': 0.6666666666666666}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330810'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 82, 'touches': 52, 'possessionLostCtrl': 18, 'keyPass': 2, 'expectedAssists': 0.0683102, 'passPerc': 0.7222222222222222, 'longballsPerc': 0.4}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330812'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 14, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 3, 'onTargetScoringAttempt': 2, 'totalClearance': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 82, 'touches': 40, 'possessionLostCtrl': 14, 'expectedGoals': 0.6919, 'keyPass': 2, 'expectedAssists': 0.0390473, 'passPerc': 0.5833333333333334, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330820'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 22, 'totalLongBalls': 19, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 13, 'goalsPrevented': 0.8811, 'passPerc': 0.6285714285714286, 'longballsPerc': 0.3157894736842105}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330821'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 12, 'expectedGoals': 0.0281, 'keyPass': 1, 'expectedAssists': 0.108954, 'passPerc': 0.8604651162790697, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330822'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 55, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 4, 'duelWon': 7, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 8, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 10, 'expectedGoals': 0.0447, 'passPerc': 0.873015873015873, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330824'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 50, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 3, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 19, 'expectedGoals': 0.0096, 'keyPass': 1, 'expectedAssists': 0.101578, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330825'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 42, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 7, 'expectedGoals': 0.1336, 'keyPass': 2, 'expectedAssists': 0.00749782, 'passPerc': 0.9130434782608695, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'djibril-sow', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d330827'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 26, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 89, 'touches': 50, 'possessionLostCtrl': 14, 'expectedGoals': 0.0513, 'keyPass': 1, 'expectedAssists': 0.0696841, 'passPerc': 0.7428571428571429, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'saul-niguez', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877783201ea30d33082a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 41, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 89, 'touches': 65, 'possessionLostCtrl': 14, 'expectedGoals': 0.1582, 'keyPass': 6, 'expectedAssists': 0.123601, 'passPerc': 0.9111111111111111, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'chidera-ejuke', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330836'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 15, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 2, 'challengeLost': 2, 'totalClearance': 1, 'errorLeadToAGoal': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'punches': 1, 'totalKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 22, 'possessionLostCtrl': 1, 'goalsPrevented': -0.2322, 'passPerc': 0.9375, 'longballsPerc': 0.8}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 6.1, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d330837'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 56, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 6, 'outfielderBlock': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 11, 'expectedGoals': 0.0287, 'keyPass': 1, 'expectedAssists': 0.17733, 'passPerc': 0.9032258064516129, 'longballsPerc': 0.4}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d330838'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 42, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalClearance': 7, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'expectedAssists': 0.00661417, 'passPerc': 1.0, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33083a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 34, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 3, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 9, 'expectedGoals': 1.0467, 'keyPass': 3, 'expectedAssists': 0.298695, 'passPerc': 0.8292682926829268, 'longballsPerc': 0.25}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 8.8, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33083c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 57, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 7, 'expectedGoals': 0.0825, 'expectedAssists': 0.0579397, 'passPerc': 0.9344262295081968, 'longballsPerc': 0.6666666666666666}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33083d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 51, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 7, 'expectedGoals': 0.929, 'keyPass': 1, 'penaltyMiss': 1, 'expectedAssists': 0.0254372, 'passPerc': 0.9272727272727272, 'longballsPerc': 0.75}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33084c'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 21, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 4, 'penaltySave': 1, 'saves': 6, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 7, 'goalsPrevented': 1.3064, 'passPerc': 0.75, 'longballsPerc': 0.14285714285714285}, 'team': 'Celta Vigo', 'name': 'ivan-villar', 'rating': 7.8, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d33084d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 76, 'accuratePass': 67, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 1, 'ownGoals': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 10, 'expectedGoals': 0.0631, 'expectedAssists': 0.0318457, 'passPerc': 0.881578947368421, 'longballsPerc': 0.3333333333333333}, 'team': 'Celta Vigo', 'name': 'jailson', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d33084e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 68, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 6, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 79, 'possessionLostCtrl': 1, 'expectedGoals': 0.221, 'passPerc': 0.9855072463768116, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'carl-starfelt', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330850'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 51, 'totalLongBalls': 6, 'goalAssist': 1, 'totalCross': 5, 'accurateCross': 2, 'duelLost': 1, 'duelWon': 3, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'totalTackle': 2, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 24, 'expectedGoals': 0.0322, 'keyPass': 1, 'expectedAssists': 0.291566, 'passPerc': 0.7611940298507462, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.9, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330851'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 71, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 9, 'keyPass': 2, 'expectedAssists': 0.19503, 'passPerc': 0.922077922077922, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'damian-rodriguez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330856'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 36, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 3, 'bigChanceCreated': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 13, 'expectedGoals': 0.2202, 'keyPass': 4, 'expectedAssists': 0.331208, 'passPerc': 0.8780487804878049, 'longballsPerc': 0.6666666666666666}, 'team': 'Celta Vigo', 'name': 'jonathan-bamba', 'rating': 7.7, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330863'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 4, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 2, 'goalsPrevented': 0.4754, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.3333333333333333}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d330864'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 24, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 10, 'expectedGoals': 0.0338, 'keyPass': 1, 'expectedAssists': 0.660719, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 8.3, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d330865'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 40, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 6, 'totalClearance': 6, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 4, 'expectedAssists': 0.00710737, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.75}, 'team': 'Atlético Madrid', 'name': 'robin-le-normand', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d330866'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 73, 'accuratePass': 64, 'totalLongBalls': 13, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 7, 'outfielderBlock': 2, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 11, 'expectedAssists': 0.00751476, 'passPerc': 0.8767123287671232, 'longballsPerc': 0.5384615384615384}, 'team': 'Atlético Madrid', 'name': 'jose-maria-gimenez', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d330867'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 57, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'totalClearance': 5, 'totalTackle': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 9, 'expectedAssists': 0.0156217, 'passPerc': 0.8769230769230769, 'longballsPerc': 0.14285714285714285}, 'team': 'Atlético Madrid', 'name': 'cesar-azpilicueta', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33086a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 47, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 6, 'challengeLost': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 4, 'expectedGoals': 0.0184, 'keyPass': 1, 'expectedAssists': 0.0562511, 'passPerc': 0.94, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33086c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 17, 'totalLongBalls': 1, 'goalAssist': 1, 'aerialLost': 1, 'duelLost': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'interceptionWon': 1, 'minutesPlayed': 81, 'touches': 30, 'possessionLostCtrl': 7, 'expectedGoals': 0.13, 'keyPass': 2, 'expectedAssists': 0.0332777, 'passPerc': 0.8947368421052632, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33086d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 11, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 2, 'duelWon': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 1, 'totalOffside': 1, 'minutesPlayed': 81, 'touches': 21, 'possessionLostCtrl': 5, 'expectedGoals': 0.0452, 'keyPass': 1, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.6666666666666666}, 'team': 'Atlético Madrid', 'name': 'julian-alvarez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d33087a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 13, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'fouls': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 23, 'possessionLostCtrl': 2, 'goalsPrevented': -1.5689, 'passPerc': 0.8666666666666667, 'longballsPerc': 0.6}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d33087b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 91, 'accuratePass': 88, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 107, 'possessionLostCtrl': 8, 'keyPass': 1, 'expectedAssists': 0.161686, 'passPerc': 0.967032967032967, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d33087c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 94, 'accuratePass': 91, 'totalLongBalls': 6, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'dispossessed': 2, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 105, 'possessionLostCtrl': 6, 'expectedAssists': 0.0406379, 'passPerc': 0.9680851063829787, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d33087d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 103, 'accuratePass': 97, 'totalLongBalls': 9, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 116, 'possessionLostCtrl': 10, 'expectedGoals': 0.0111, 'expectedAssists': 0.0803521, 'passPerc': 0.941747572815534, 'longballsPerc': 0.6666666666666666}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d33087e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 40, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 4, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 13, 'expectedGoals': 0.0209, 'keyPass': 2, 'expectedAssists': 0.18137, 'passPerc': 0.9090909090909091, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330881'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 41, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'wasFouled': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 13, 'expectedGoals': 0.0153, 'expectedAssists': 0.0171054, 'passPerc': 0.9111111111111111, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'yangel-herrera', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330884'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 27, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 4, 'shotOffTarget': 2, 'blockedScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 12, 'expectedGoals': 0.1847, 'keyPass': 1, 'expectedAssists': 0.050983, 'passPerc': 0.9, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'bryan-gil', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330891'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 20, 'totalLongBalls': 19, 'accurateLongBalls': 10, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 9, 'goalsPrevented': 0.3939, 'passPerc': 0.6896551724137931, 'longballsPerc': 0.5263157894736842}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330892'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 12, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 5, 'interceptionWon': 3, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 14, 'expectedAssists': 0.0243824, 'passPerc': 0.6, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330893'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 19, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 12, 'expectedAssists': 0.0210789, 'passPerc': 0.6785714285714286, 'longballsPerc': 0.375}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330894'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 22, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 7, 'totalContest': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 86, 'touches': 39, 'possessionLostCtrl': 9, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.75}, 'team': 'Deportivo Alavés', 'name': 'aleksandar-sedlar', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330895'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 15, 'totalLongBalls': 5, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 17, 'keyPass': 1, 'expectedAssists': 0.0498444, 'passPerc': 0.5357142857142857, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'manuel-sanchez', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330896'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 18, 'totalLongBalls': 2, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 3, 'totalTackle': 1, 'wasFouled': 4, 'minutesPlayed': 88, 'touches': 52, 'possessionLostCtrl': 21, 'expectedAssists': 0.0450116, 'passPerc': 0.6206896551724138, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330897'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 32, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 13, 'expectedGoals': 0.0282, 'expectedAssists': 0.00889907, 'passPerc': 0.7441860465116279, 'longballsPerc': 0.8}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d330898'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalTackle': 4, 'wasFouled': 3, 'minutesPlayed': 77, 'touches': 53, 'possessionLostCtrl': 11, 'expectedGoals': 0.1007, 'expectedAssists': 0.0124531, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'ander-guevara', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d33089b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 9, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 18, 'possessionLostCtrl': 6, 'keyPass': 2, 'expectedAssists': 0.0392849, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Deportivo Alavés', 'name': 'kike-garcia', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308a7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 21, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'goodHighClaim': 1, 'saves': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 6, 'goalsPrevented': 0.0858, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308a8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 2, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 15, 'expectedAssists': 0.0366387, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.2}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308a9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 47, 'totalLongBalls': 10, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 6, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'outfielderBlock': 2, 'totalTackle': 1, 'minutesPlayed': 86, 'touches': 69, 'possessionLostCtrl': 14, 'passPerc': 0.8103448275862069, 'longballsPerc': 0.3}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308aa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 48, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 10, 'passPerc': 0.8275862068965517, 'longballsPerc': 0.45454545454545453}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308ac'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 91, 'accuratePass': 75, 'totalLongBalls': 16, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 7, 'dispossessed': 3, 'totalContest': 2, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 106, 'possessionLostCtrl': 19, 'expectedGoals': 0.0355, 'keyPass': 1, 'expectedAssists': 0.087287, 'passPerc': 0.8241758241758241, 'longballsPerc': 0.4375}, 'team': 'Real Betis', 'name': 'william-carvalho', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308ad'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 49, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0289551, 'passPerc': 0.8448275862068966, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'marc-roca', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308ae'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 25, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 76, 'touches': 50, 'possessionLostCtrl': 13, 'expectedGoals': 0.0819, 'keyPass': 3, 'expectedAssists': 0.0858046, 'passPerc': 0.8620689655172413, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'pablo-fornals', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308af'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 37, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 11, 'duelWon': 4, 'dispossessed': 4, 'totalContest': 3, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 20, 'expectedGoals': 0.6456, 'keyPass': 1, 'expectedAssists': 0.121418, 'passPerc': 0.8222222222222222, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'nabil-fekir', 'rating': 5.9, 'match_result': 'D'}
{'_id': ObjectId('6764877883201ea30d3308be'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 15, 'totalLongBalls': 20, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 16, 'goalsPrevented': 1.3254, 'passPerc': 0.4838709677419355, 'longballsPerc': 0.2}, 'team': 'Leganés', 'name': 'juan-soriano', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308bf'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 21, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'dispossessed': 1, 'bigChanceMissed': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'totalTackle': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.027357, 'passPerc': 0.7241379310344828, 'longballsPerc': 0.2857142857142857}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308c0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 27, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 4, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 8, 'passPerc': 0.7714285714285715, 'longballsPerc': 0.16666666666666666}, 'team': 'Leganés', 'name': 'aritz-arambarri', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308c1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 49, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 4, 'duelWon': 5, 'totalClearance': 7, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 11, 'expectedAssists': 0.00749669, 'passPerc': 0.8166666666666667, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308c2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 22, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 5, 'interceptionWon': 5, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 16, 'expectedAssists': 0.00635155, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.4}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308c3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 1, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.00646564, 'passPerc': 0.9, 'longballsPerc': 1.0}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308c6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 25, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 3, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 4, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'penaltyWon': 1, 'minutesPlayed': 87, 'touches': 46, 'possessionLostCtrl': 12, 'expectedGoals': 0.0363, 'keyPass': 2, 'expectedAssists': 0.11838, 'passPerc': 0.8064516129032258, 'longballsPerc': 0.25}, 'team': 'Leganés', 'name': 'oscar-rodriguez', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308c7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 1, 'duelWon': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'minutesPlayed': 82, 'touches': 46, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0393574, 'passPerc': 0.8181818181818182, 'longballsPerc': 0.6666666666666666}, 'team': 'Leganés', 'name': 'seydouba-cisse', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308c8'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 9, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'fouls': 1, 'minutesPlayed': 82, 'touches': 26, 'possessionLostCtrl': 10, 'expectedGoals': 0.137, 'expectedAssists': 0.0364126, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.5}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308d5'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 24, 'totalLongBalls': 7, 'goalAssist': 0, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'penaltySave': 1, 'saves': 3, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 8, 'goalsPrevented': -0.1837, 'passPerc': 0.7741935483870968, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308d7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 74, 'accuratePass': 66, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 4, 'duelWon': 4, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 8, 'expectedGoals': 0.0335, 'passPerc': 0.8918918918918919, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'scott-mckenna', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308d8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 79, 'accuratePass': 67, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 3, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 12, 'expectedAssists': 0.0603494, 'passPerc': 0.8481012658227848, 'longballsPerc': 0.2222222222222222}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308d9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 2, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 78, 'touches': 63, 'possessionLostCtrl': 19, 'keyPass': 1, 'expectedAssists': 0.00978168, 'passPerc': 0.5862068965517241, 'longballsPerc': 0.25}, 'team': 'Las Palmas', 'name': 'alex-munoz', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308da'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 47, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 7, 'totalContest': 2, 'wonContest': 2, 'totalTackle': 4, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 14, 'expectedAssists': 0.0130343, 'passPerc': 0.8392857142857143, 'longballsPerc': 0.375}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308db'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 63, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 87, 'touches': 86, 'possessionLostCtrl': 15, 'expectedGoals': 0.0226, 'expectedAssists': 0.106423, 'passPerc': 0.84, 'longballsPerc': 0.5555555555555556}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308dc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 16, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 78, 'touches': 37, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0836656, 'passPerc': 0.6956521739130435, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'park-marvin', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308de'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 11, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 3, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 14, 'expectedGoals': 0.5729, 'keyPass': 2, 'expectedAssists': 0.146602, 'passPerc': 0.7333333333333333, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'sandro-ramirez', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308df'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 6, 'aerialWon': 6, 'duelLost': 10, 'duelWon': 10, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 14, 'expectedGoals': 0.2442, 'keyPass': 2, 'expectedAssists': 0.102347, 'passPerc': 0.5416666666666666, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'oliver-mcburnie', 'rating': 7.5, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d3308ec'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 22, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'interceptionWon': 1, 'goodHighClaim': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 2, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308ed'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 49, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0387528, 'passPerc': 0.9074074074074074, 'longballsPerc': 0.8}, 'team': 'Real Madrid', 'name': 'daniel-carvajal', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308ee'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 74, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'bigChanceCreated': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 8, 'keyPass': 2, 'expectedAssists': 0.034031, 'passPerc': 0.925, 'longballsPerc': 0.8333333333333334}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 8.2, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308ef'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 79, 'totalLongBalls': 8, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 5, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 6, 'expectedGoals': 0.199, 'keyPass': 1, 'expectedAssists': 0.0560609, 'passPerc': 0.9294117647058824, 'longballsPerc': 0.75}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308f0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 57, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 6, 'dispossessed': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 5, 'keyPass': 2, 'expectedAssists': 0.198839, 'passPerc': 0.95, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Madrid', 'name': 'fran-garcia', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308f1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 55, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 7, 'expectedGoals': 0.0194, 'keyPass': 2, 'expectedAssists': 0.0738642, 'passPerc': 0.9322033898305084, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308f2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 90, 'accuratePass': 86, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 103, 'possessionLostCtrl': 5, 'expectedGoals': 0.0203, 'keyPass': 1, 'expectedAssists': 0.117663, 'passPerc': 0.9555555555555556, 'longballsPerc': 0.8}, 'team': 'Real Madrid', 'name': 'aurelien-tchouameni', 'rating': 7.7, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308f5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 30, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 7, 'dispossessed': 3, 'totalContest': 9, 'wonContest': 5, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 85, 'touches': 57, 'possessionLostCtrl': 16, 'expectedGoals': 0.0458, 'keyPass': 3, 'expectedAssists': 0.480154, 'passPerc': 0.8571428571428571, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308f6'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 24, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 4, 'bigChanceMissed': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'totalOffside': 1, 'minutesPlayed': 86, 'touches': 46, 'possessionLostCtrl': 13, 'expectedGoals': 0.9871, 'expectedAssists': 0.0245481, 'passPerc': 0.9230769230769231, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877883201ea30d3308ff'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 23, 'totalLongBalls': 15, 'accurateLongBalls': 2, 'goalAssist': 0, 'goodHighClaim': 2, 'savedShotsFromInsideTheBox': 6, 'saves': 6, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 13, 'goalsPrevented': -1.1435, 'passPerc': 0.6388888888888888, 'longballsPerc': 0.13333333333333333}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330900'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 21, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 7, 'expectedAssists': 0.0141208, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330901'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 39, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 2, 'passPerc': 0.9512195121951219, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330902'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 48, 'totalLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 7, 'expectedGoals': 0.0316, 'passPerc': 0.8727272727272727, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'boyomo-flavien', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330903'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 19, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.128139, 'passPerc': 0.76, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330905'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 25, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 4, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 4, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0396667, 'passPerc': 0.9615384615384616, 'longballsPerc': 1.0}, 'team': 'Real Valladolid', 'name': 'ivan-sanchez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877883201ea30d330906'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 29, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 8, 'challengeLost': 4, 'totalContest': 1, 'totalTackle': 4, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 85, 'touches': 47, 'possessionLostCtrl': 8, 'keyPass': 2, 'expectedAssists': 0.0343306, 'passPerc': 0.8529411764705882, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330916'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 13, 'totalLongBalls': 21, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 16, 'passPerc': 0.4482758620689655, 'longballsPerc': 0.23809523809523808}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d330917'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 12, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 8, 'totalContest': 6, 'wonContest': 4, 'shotOffTarget': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 22, 'expectedGoals': 0.0266, 'expectedAssists': 0.00651464, 'passPerc': 0.5217391304347826, 'longballsPerc': 0.42857142857142855}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d330918'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 24, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 8, 'expectedAssists': 0.008064, 'passPerc': 0.7741935483870968, 'longballsPerc': 0.4444444444444444}, 'team': 'Getafe', 'name': 'djene', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d330919'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 23, 'totalLongBalls': 21, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 6, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'totalClearance': 2, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 28, 'expectedGoals': 0.0265, 'keyPass': 1, 'expectedAssists': 0.0156349, 'passPerc': 0.46938775510204084, 'longballsPerc': 0.23809523809523808}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33091a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 15, 'totalLongBalls': 9, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 20, 'keyPass': 2, 'expectedAssists': 0.193267, 'passPerc': 0.5555555555555556, 'longballsPerc': 0.1111111111111111}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33091b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 7, 'duelWon': 11, 'challengeLost': 1, 'dispossessed': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 6, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 18, 'expectedGoals': 0.0043, 'keyPass': 4, 'expectedAssists': 0.0726145, 'passPerc': 0.6944444444444444, 'longballsPerc': 0.16666666666666666}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33091d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 8, 'duelWon': 2, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 81, 'touches': 25, 'possessionLostCtrl': 13, 'expectedGoals': 0.035, 'keyPass': 1, 'expectedAssists': 0.00602059, 'passPerc': 0.5833333333333334, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'carles-perez', 'rating': 6.1, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d330920'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 11, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 5, 'duelLost': 11, 'duelWon': 13, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 6, 'fouls': 3, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 16, 'expectedGoals': 0.114, 'expectedAssists': 0.0604058, 'passPerc': 0.7333333333333333, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d330928'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 9, 'totalLongBalls': 23, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'wasFouled': 1, 'goodHighClaim': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 17, 'goalsPrevented': 0.0121, 'passPerc': 0.36, 'longballsPerc': 0.30434782608695654}, 'team': 'Rayo Vallecano', 'name': 'dani-cardenas', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d330929'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 12, 'totalLongBalls': 10, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 4, 'duelLost': 11, 'duelWon': 10, 'challengeLost': 3, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 26, 'expectedAssists': 0.010066, 'passPerc': 0.46153846153846156, 'longballsPerc': 0.1}, 'team': 'Rayo Vallecano', 'name': 'ivan-balliu', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33092a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 24, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 6, 'duelWon': 8, 'challengeLost': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 3, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 6, 'expectedAssists': 0.0142291, 'passPerc': 0.8, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33092b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 19, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 4, 'totalClearance': 9, 'outfielderBlock': 2, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 12, 'passPerc': 0.6551724137931034, 'longballsPerc': 0.125}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33092c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 21, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.0143962, 'passPerc': 0.6774193548387096, 'longballsPerc': 0.2}, 'team': 'Rayo Vallecano', 'name': 'alfonso-espino', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33092d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 12, 'expectedAssists': 0.0079596, 'passPerc': 0.7222222222222222, 'longballsPerc': 0.4}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d330931'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 9, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 85, 'touches': 36, 'possessionLostCtrl': 16, 'expectedGoals': 0.0156, 'passPerc': 0.5625, 'longballsPerc': 0.16666666666666666}, 'team': 'Rayo Vallecano', 'name': 'adrian-embarba', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877983201ea30d33093f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 16, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'goodHighClaim': 1, 'saves': 2, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 10, 'expectedGoals': 0.0741, 'goalsPrevented': -0.4685, 'passPerc': 0.6153846153846154, 'longballsPerc': 0.25}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330940'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 28, 'totalLongBalls': 6, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 87, 'touches': 42, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.00867349, 'passPerc': 0.9032258064516129, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330941'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 37, 'possessionLostCtrl': 5, 'passPerc': 0.782608695652174, 'longballsPerc': 0.3333333333333333}, 'team': 'Espanyol', 'name': 'marash-kumbulla', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330942'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 26, 'totalLongBalls': 14, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 4, 'totalClearance': 4, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 19, 'expectedAssists': 0.0386458, 'passPerc': 0.6190476190476191, 'longballsPerc': 0.21428571428571427}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330943'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 11, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 7, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 4, 'wonContest': 2, 'blockedScoringAttempt': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'minutesPlayed': 87, 'touches': 39, 'possessionLostCtrl': 14, 'expectedGoals': 0.1344, 'keyPass': 1, 'expectedAssists': 0.024346, 'passPerc': 0.7333333333333333, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330944'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 83, 'touches': 36, 'possessionLostCtrl': 10, 'expectedGoals': 0.4711, 'keyPass': 2, 'expectedAssists': 0.0354845, 'passPerc': 0.85, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'jofre', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330945'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 14, 'expectedAssists': 0.0244923, 'passPerc': 0.7, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'alex-kral', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330946'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 10, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'totalClearance': 1, 'totalTackle': 2, 'fouls': 5, 'minutesPlayed': 83, 'touches': 19, 'possessionLostCtrl': 2, 'expectedAssists': 0.0112137, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'jose-gragera', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330948'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 10, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 5, 'duelWon': 7, 'bigChanceCreated': 1, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'totalClearance': 4, 'wasFouled': 7, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 2, 'expectedGoals': 0.8318, 'keyPass': 1, 'expectedAssists': 0.00538027, 'passPerc': 1.0, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'alejo-veliz', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330949'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 9, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 2, 'duelWon': 2, 'totalContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 20, 'possessionLostCtrl': 5, 'expectedGoals': 0.2736, 'keyPass': 1, 'expectedAssists': 0.196903, 'passPerc': 0.75, 'longballsPerc': 1.0}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330956'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 30, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 6, 'goalsPrevented': 0.454, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330957'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 50, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 2, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 83, 'touches': 72, 'possessionLostCtrl': 9, 'keyPass': 2, 'expectedAssists': 0.109126, 'passPerc': 0.9259259259259259, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'hamari-traore', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330958'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 61, 'accuratePass': 51, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelWon': 2, 'totalClearance': 3, 'clearanceOffLine': 1, 'outfielderBlock': 4, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 10, 'expectedAssists': 0.00718682, 'passPerc': 0.8360655737704918, 'longballsPerc': 0.16666666666666666}, 'team': 'Real Sociedad', 'name': 'aritz-elustondo', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330959'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 83, 'accuratePass': 74, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'errorLeadToAShot': 1, 'wasFouled': 1, 'fouls': 5, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 9, 'expectedGoals': 0.0901, 'expectedAssists': 0.00843142, 'passPerc': 0.891566265060241, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'jon-pacheco', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33095a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 43, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0373066, 'passPerc': 0.9347826086956522, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33095b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 62, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 1, 'totalClearance': 5, 'interceptionWon': 4, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 4, 'expectedAssists': 0.0246682, 'passPerc': 0.9538461538461539, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'martin-zubimendi', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33095c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 55, 'accuratePass': 46, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalTackle': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 17, 'expectedGoals': 0.1035, 'keyPass': 2, 'expectedAssists': 0.321169, 'passPerc': 0.8363636363636363, 'longballsPerc': 1.0}, 'team': 'Real Sociedad', 'name': 'sergio-gomez', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33095f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 11, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'duelLost': 1, 'duelWon': 5, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'wasFouled': 4, 'totalOffside': 1, 'minutesPlayed': 86, 'touches': 34, 'possessionLostCtrl': 12, 'expectedGoals': 0.0098, 'expectedAssists': 0.0288095, 'passPerc': 0.7857142857142857, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'sheraldo-becker', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33096d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 27, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalClearance': 3, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 1, 'goalsPrevented': -0.1929, 'passPerc': 0.9642857142857143, 'longballsPerc': 0.8333333333333334}, 'team': 'Barcelona', 'name': 'marc-andre-ter-stegen', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33096e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 50, 'totalLongBalls': 8, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 2, 'totalClearance': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.0951278, 'passPerc': 0.8771929824561403, 'longballsPerc': 0.875}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33096f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 88, 'accuratePass': 82, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 2, 'totalClearance': 2, 'totalTackle': 1, 'penaltyConceded': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 93, 'possessionLostCtrl': 6, 'expectedAssists': 0.0149618, 'passPerc': 0.9318181818181818, 'longballsPerc': 0.25}, 'team': 'Barcelona', 'name': 'pau-cubarsi', 'rating': 6.3, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330970'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 98, 'accuratePass': 91, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 1, 'duelWon': 6, 'totalClearance': 3, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 104, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0489921, 'passPerc': 0.9285714285714286, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330971'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 45, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 4, 'totalContest': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 89, 'touches': 70, 'possessionLostCtrl': 13, 'keyPass': 1, 'expectedAssists': 0.0291455, 'passPerc': 0.8823529411764706, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'alejandro-balde', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330972'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 51, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'duelLost': 6, 'duelWon': 3, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 83, 'touches': 58, 'possessionLostCtrl': 2, 'expectedAssists': 0.0362199, 'passPerc': 0.9622641509433962, 'longballsPerc': 0.75}, 'team': 'Barcelona', 'name': 'marc-bernal', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330973'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 46, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'interceptionWon': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 11, 'keyPass': 5, 'expectedAssists': 0.407095, 'passPerc': 0.8679245283018868, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'pedri', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330974'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 27, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 8, 'duelWon': 8, 'challengeLost': 1, 'totalContest': 7, 'wonContest': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 3, 'minutesPlayed': 89, 'touches': 60, 'possessionLostCtrl': 20, 'expectedGoals': 0.0545, 'expectedAssists': 0.0712705, 'passPerc': 0.75, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330975'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 35, 'totalLongBalls': 7, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 3, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 3, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 15, 'expectedGoals': 0.5009, 'keyPass': 3, 'expectedAssists': 0.427142, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.8571428571428571}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8.6, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330977'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 15, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 1, 'bigChanceMissed': 3, 'shotOffTarget': 3, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'hitWoodwork': 2, 'goals': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 16, 'expectedGoals': 1.2448, 'expectedAssists': 0.0746857, 'passPerc': 0.5769230769230769, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d330983'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 14, 'totalLongBalls': 22, 'accurateLongBalls': 8, 'goalAssist': 0, 'duelWon': 1, 'totalClearance': 2, 'wasFouled': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'punches': 1, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 15, 'expectedAssists': 0.00597797, 'goalsPrevented': -0.3368, 'passPerc': 0.5, 'longballsPerc': 0.36363636363636365}, 'team': 'Athletic Club', 'name': 'padilla-alex', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330984'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 27, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 6, 'expectedAssists': 0.00597081, 'passPerc': 0.8709677419354839, 'longballsPerc': 0.5}, 'team': 'Athletic Club', 'name': 'inigo-lekue', 'rating': 6.3, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330985'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 39, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelWon': 3, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 8, 'expectedAssists': 0.00635229, 'passPerc': 0.8863636363636364, 'longballsPerc': 0.7142857142857143}, 'team': 'Athletic Club', 'name': 'daniel-vivian', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330986'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 30, 'totalLongBalls': 11, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'interceptionWon': 4, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 10, 'expectedGoals': 0.0768, 'keyPass': 1, 'passPerc': 0.8108108108108109, 'longballsPerc': 0.5454545454545454}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330987'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 16, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 40, 'possessionLostCtrl': 3, 'keyPass': 1, 'expectedAssists': 0.138707, 'passPerc': 0.8888888888888888, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d330988'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 20, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 1, 'challengeLost': 3, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 78, 'touches': 32, 'possessionLostCtrl': 4, 'expectedGoals': 0.0391, 'passPerc': 0.9090909090909091, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'benat-prados', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d33098c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 13, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 3, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 18, 'expectedGoals': 0.0958, 'keyPass': 1, 'expectedAssists': 0.239668, 'passPerc': 0.7222222222222222, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'nico-williams', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d33098d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 9, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 9, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 2, 'totalClearance': 1, 'totalTackle': 1, 'totalOffside': 2, 'minutesPlayed': 78, 'touches': 25, 'possessionLostCtrl': 12, 'keyPass': 1, 'expectedAssists': 0.0138763, 'passPerc': 0.6428571428571429, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d33099a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 8, 'totalLongBalls': 18, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 2, 'saves': 1, 'punches': 1, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 14, 'goalsPrevented': 0.0574, 'passPerc': 0.36363636363636365, 'longballsPerc': 0.2222222222222222}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33099b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 3, 'dispossessed': 3, 'totalContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 59, 'possessionLostCtrl': 20, 'expectedGoals': 0.0075, 'keyPass': 2, 'expectedAssists': 0.148668, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33099c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 35, 'totalLongBalls': 10, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'shotOffTarget': 1, 'totalClearance': 6, 'outfielderBlock': 1, 'interceptionWon': 3, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 5, 'expectedGoals': 0.0395, 'passPerc': 0.875, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33099d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 23, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 2, 'totalClearance': 2, 'outfielderBlock': 2, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 6, 'passPerc': 0.7931034482758621, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'herrando-jorge', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33099e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 16, 'totalLongBalls': 9, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 18, 'expectedAssists': 0.0167149, 'passPerc': 0.5714285714285714, 'longballsPerc': 0.2222222222222222}, 'team': 'Osasuna', 'name': 'abel-bretones', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d33099f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 29, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 6, 'duelLost': 7, 'duelWon': 9, 'challengeLost': 1, 'dispossessed': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 14, 'expectedGoals': 0.0326, 'expectedAssists': 0.0104984, 'passPerc': 0.7073170731707317, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d3309a1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 32, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'challengeLost': 1, 'shotOffTarget': 2, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 5, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 15, 'expectedGoals': 0.0654, 'keyPass': 2, 'expectedAssists': 0.0276222, 'passPerc': 0.8, 'longballsPerc': 0.25}, 'team': 'Osasuna', 'name': 'jon-moncayola', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d3309a2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 18, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'duelLost': 9, 'duelWon': 4, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 79, 'touches': 41, 'possessionLostCtrl': 10, 'expectedGoals': 0.2577, 'keyPass': 2, 'expectedAssists': 0.0286323, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d3309a3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 4, 'wonContest': 2, 'shotOffTarget': 2, 'totalTackle': 2, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 15, 'expectedGoals': 0.0419, 'keyPass': 1, 'expectedAssists': 0.0258859, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'bryan-zaragoza', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d3309a4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 7, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 2, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'minutesPlayed': 79, 'touches': 22, 'possessionLostCtrl': 10, 'expectedGoals': 0.025, 'expectedAssists': 0.0136253, 'passPerc': 0.4444444444444444, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877983201ea30d3309b0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 15, 'totalLongBalls': 16, 'accurateLongBalls': 4, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 4, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 12, 'goalsPrevented': -0.4042, 'passPerc': 0.5555555555555556, 'longballsPerc': 0.25}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309b1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 8, 'accurateCross': 3, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 8, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 3, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 14, 'expectedGoals': 0.0161, 'keyPass': 2, 'expectedAssists': 0.0883762, 'passPerc': 0.6521739130434783, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309b2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 47, 'totalLongBalls': 10, 'accurateLongBalls': 8, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 1, 'totalClearance': 9, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 5, 'expectedAssists': 0.0141009, 'passPerc': 0.9038461538461539, 'longballsPerc': 0.8}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309b3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 51, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 6, 'duelLost': 4, 'duelWon': 8, 'totalClearance': 12, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 73, 'possessionLostCtrl': 6, 'expectedAssists': 0.00651029, 'passPerc': 0.8947368421052632, 'longballsPerc': 0.5714285714285714}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309b4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 34, 'totalLongBalls': 9, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 9, 'accurateCross': 3, 'aerialWon': 2, 'duelLost': 5, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 5, 'wonContest': 2, 'bigChanceCreated': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 80, 'possessionLostCtrl': 26, 'keyPass': 3, 'expectedAssists': 0.698709, 'passPerc': 0.7555555555555555, 'longballsPerc': 0.4444444444444444}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309b5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 35, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 5, 'duelLost': 6, 'duelWon': 10, 'dispossessed': 1, 'totalContest': 1, 'blockedScoringAttempt': 2, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 16, 'expectedGoals': 0.0937, 'keyPass': 1, 'expectedAssists': 0.0971808, 'passPerc': 0.7291666666666666, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309b7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'totalLongBalls': 6, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 2, 'minutesPlayed': 85, 'touches': 45, 'possessionLostCtrl': 14, 'expectedGoals': 0.029, 'expectedAssists': 0.052304, 'passPerc': 0.8214285714285714, 'longballsPerc': 0.8333333333333334}, 'team': 'Mallorca', 'name': 'sergi-darder', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309b9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 11, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 5, 'dispossessed': 2, 'shotOffTarget': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 21, 'possessionLostCtrl': 7, 'expectedGoals': 0.1135, 'keyPass': 3, 'expectedAssists': 0.0334664, 'passPerc': 0.7857142857142857, 'longballsPerc': None}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877983201ea30d3309ba'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 14, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 8, 'totalContest': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 7, 'fouls': 1, 'minutesPlayed': 79, 'touches': 38, 'possessionLostCtrl': 9, 'expectedGoals': 0.0661, 'expectedAssists': 0.0121777, 'passPerc': 0.8235294117647058, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'dani-rodriguez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309c7'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 18, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 9, 'goalsPrevented': -1.1077, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.25}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309c8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 66, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 4, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 95, 'possessionLostCtrl': 9, 'expectedGoals': 0.0557, 'expectedAssists': 0.00915319, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.6666666666666666}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309c9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 83, 'accuratePass': 75, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 4, 'totalContest': 2, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 8, 'expectedGoals': 0.0296, 'passPerc': 0.9036144578313253, 'longballsPerc': 0.375}, 'team': 'Sevilla', 'name': 'loic-bade', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309ca'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 68, 'accuratePass': 55, 'totalLongBalls': 9, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 5, 'shotOffTarget': 2, 'totalClearance': 3, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 77, 'touches': 77, 'possessionLostCtrl': 13, 'expectedGoals': 0.1023, 'expectedAssists': 0.0156409, 'passPerc': 0.8088235294117647, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'kike-salas', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309cb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 30, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 20, 'expectedGoals': 0.0775, 'keyPass': 1, 'expectedAssists': 0.190217, 'passPerc': 0.8108108108108109, 'longballsPerc': 0.42857142857142855}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309cd'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 59, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 4, 'dispossessed': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.0151567, 'passPerc': 0.8939393939393939, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'lucien-agoume', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309ce'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 50, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 14, 'expectedGoals': 0.2575, 'keyPass': 1, 'expectedAssists': 0.0397985, 'passPerc': 0.8620689655172413, 'longballsPerc': 0.4}, 'team': 'Sevilla', 'name': 'saul-niguez', 'rating': 7.6, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309d0'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 9, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 4, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 3, 'minutesPlayed': 77, 'touches': 22, 'possessionLostCtrl': 6, 'expectedGoals': 0.3796, 'keyPass': 1, 'expectedAssists': 0.100599, 'passPerc': 0.8181818181818182, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309d1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 25, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 3, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 86, 'touches': 54, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.0470521, 'passPerc': 0.7352941176470589, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'lucas-ocampos', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d3309de'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 22, 'totalLongBalls': 15, 'accurateLongBalls': 5, 'goalAssist': 0, 'interceptionWon': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 6, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 12, 'goalsPrevented': -0.2417, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.3333333333333333}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309df'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 29, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'duelLost': 8, 'challengeLost': 4, 'dispossessed': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 9, 'passPerc': 0.8787878787878788, 'longballsPerc': 0.8}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 6, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309e0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 30, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 6, 'duelWon': 10, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 4, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 11, 'passPerc': 0.7317073170731707, 'longballsPerc': 0.4166666666666667}, 'team': 'Villarreal', 'name': 'kambwala-willy', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309e1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 37, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'totalClearance': 1, 'minutesPlayed': 85, 'touches': 50, 'possessionLostCtrl': 11, 'expectedAssists': 0.00718267, 'passPerc': 0.7872340425531915, 'longballsPerc': 0.2727272727272727}, 'team': 'Villarreal', 'name': 'eric-bailly', 'rating': 6.2, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309e2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 25, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 7, 'challengeLost': 1, 'totalClearance': 4, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 11, 'keyPass': 1, 'expectedAssists': 0.086386, 'passPerc': 0.7352941176470589, 'longballsPerc': 0.3333333333333333}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309e5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 21, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 7, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 15, 'expectedAssists': 0.00671689, 'passPerc': 0.7, 'longballsPerc': 0.5}, 'team': 'Villarreal', 'name': 'pape-gueye', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309e6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 17, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 5, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 2, 'totalClearance': 1, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 15, 'keyPass': 4, 'expectedAssists': 0.41228, 'passPerc': 0.7083333333333334, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'alejandro-baena', 'rating': 7.9, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309f4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 18, 'totalLongBalls': 11, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'punches': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 8, 'goalsPrevented': -0.3439, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.2727272727272727}, 'team': 'Celta Vigo', 'name': 'ivan-villar', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309f5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 59, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 3, 'duelWon': 5, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 75, 'touches': 76, 'possessionLostCtrl': 8, 'expectedGoals': 0.1028, 'expectedAssists': 0.0140166, 'passPerc': 0.8939393939393939, 'longballsPerc': 0.7142857142857143}, 'team': 'Celta Vigo', 'name': 'javi-rodriguez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309f6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 63, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 4, 'totalClearance': 4, 'interceptionWon': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 76, 'possessionLostCtrl': 3, 'passPerc': 0.9545454545454546, 'longballsPerc': 0.5}, 'team': 'Celta Vigo', 'name': 'jailson', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309f7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 66, 'accuratePass': 62, 'totalLongBalls': 8, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 7, 'totalClearance': 7, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 4, 'expectedAssists': 0.00756992, 'passPerc': 0.9393939393939394, 'longballsPerc': 0.625}, 'team': 'Celta Vigo', 'name': 'carlos-dominguez', 'rating': 7.5, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309f8'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 33, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 2, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 14, 'expectedAssists': 0.0123211, 'passPerc': 0.825, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309f9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 54, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 7, 'challengeLost': 1, 'dispossessed': 1, 'bigChanceCreated': 1, 'totalClearance': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 65, 'possessionLostCtrl': 7, 'keyPass': 1, 'expectedAssists': 0.0801556, 'passPerc': 0.9152542372881356, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'damian-rodriguez', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309fa'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 7, 'expectedGoals': 0.0212, 'expectedAssists': 0.0385923, 'passPerc': 0.925, 'longballsPerc': 0.75}, 'team': 'Celta Vigo', 'name': 'fran-beltran', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d3309fc'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 19, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'dispossessed': 3, 'totalContest': 3, 'wonContest': 2, 'bigChanceCreated': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'wasFouled': 1, 'minutesPlayed': 87, 'touches': 45, 'possessionLostCtrl': 15, 'expectedGoals': 0.9828, 'keyPass': 3, 'penaltyMiss': 1, 'expectedAssists': 0.210568, 'passPerc': 0.7307692307692307, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 8.1, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a0b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 18, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 1, 'penaltySave': 1, 'saves': 2, 'punches': 1, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0109469, 'goalsPrevented': -1.1014, 'passPerc': 0.75, 'longballsPerc': 0.3333333333333333}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a0c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 50, 'accuratePass': 39, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 3, 'aerialLost': 2, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 77, 'touches': 75, 'possessionLostCtrl': 18, 'expectedGoals': 0.0742, 'expectedAssists': 0.0184965, 'passPerc': 0.78, 'longballsPerc': 0.4}, 'team': 'Valencia', 'name': 'correia-thierry', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a0d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 64, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 7, 'expectedAssists': 0.0103108, 'passPerc': 0.9014084507042254, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a0e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 45, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 5, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'lastManTackle': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 8, 'expectedGoals': 0.1483, 'keyPass': 2, 'expectedAssists': 0.18655, 'passPerc': 0.8490566037735849, 'longballsPerc': 0.4}, 'team': 'Valencia', 'name': 'gasiorowski-yarek', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a0f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 25, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 16, 'expectedGoals': 0.0444, 'expectedAssists': 0.126072, 'passPerc': 0.8064516129032258, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'jesus-vazquez', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a10'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 14, 'accuratePass': 11, 'goalAssist': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 4, 'dispossessed': 2, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'hitWoodwork': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'minutesPlayed': 84, 'touches': 24, 'possessionLostCtrl': 7, 'expectedGoals': 0.0839, 'keyPass': 1, 'passPerc': 0.7857142857142857, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'rafa-mir', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a11'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 69, 'accuratePass': 61, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 4, 'dispossessed': 1, 'bigChanceCreated': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 15, 'keyPass': 3, 'expectedAssists': 0.199659, 'passPerc': 0.8840579710144928, 'longballsPerc': 0.8}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a13'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 27, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 6, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'minutesPlayed': 77, 'touches': 46, 'possessionLostCtrl': 14, 'expectedGoals': 0.3935, 'expectedAssists': 0.022638, 'passPerc': 0.8709677419354839, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'diego-lopez', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a14'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 50, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 11, 'expectedGoals': 0.0106, 'keyPass': 1, 'expectedAssists': 0.248653, 'passPerc': 0.8928571428571429, 'longballsPerc': 0.75}, 'team': 'Valencia', 'name': 'andre-almeida', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a15'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 12, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 4, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 26, 'possessionLostCtrl': 8, 'expectedGoals': 0.0546, 'keyPass': 1, 'expectedAssists': 0.0138479, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a22'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 15, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 1, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'punches': 1, 'minutesPlayed': 90, 'touches': 27, 'possessionLostCtrl': 6, 'keyPass': 1, 'goalsPrevented': -1.6174, 'passPerc': 0.7142857142857143, 'longballsPerc': 0.3333333333333333}, 'team': 'Villarreal', 'name': 'diego-conde', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a23'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 67, 'accuratePass': 63, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 3, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 5, 'expectedAssists': 0.0202504, 'passPerc': 0.9402985074626866, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'kiko-femenia', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a24'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 55, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 9, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 6, 'expectedAssists': 0.00680337, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.2}, 'team': 'Villarreal', 'name': 'raul-albiol', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a25'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 49, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 1, 'duelWon': 3, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 5, 'expectedAssists': 0.00907226, 'passPerc': 0.9074074074074074, 'longballsPerc': 0.25}, 'team': 'Villarreal', 'name': 'eric-bailly', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a26'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 40, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 1, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 67, 'possessionLostCtrl': 14, 'keyPass': 1, 'expectedAssists': 0.0567499, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.2}, 'team': 'Villarreal', 'name': 'sergi-cardona', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a28'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 55, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 89, 'touches': 70, 'possessionLostCtrl': 5, 'expectedAssists': 0.0225783, 'passPerc': 0.9322033898305084, 'longballsPerc': 0.8}, 'team': 'Villarreal', 'name': 'dani-parejo', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a29'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 4, 'expectedAssists': 0.0240178, 'passPerc': 0.9736842105263158, 'longballsPerc': 1.0}, 'team': 'Villarreal', 'name': 'santi-comesana', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a2c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 7, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 79, 'touches': 20, 'possessionLostCtrl': 9, 'expectedGoals': 0.4701, 'passPerc': 0.5384615384615384, 'longballsPerc': None}, 'team': 'Villarreal', 'name': 'arnaut-danjuma', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a36'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 16, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'errorLeadToAGoal': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 22, 'possessionLostCtrl': 1, 'goalsPrevented': -1.2443, 'passPerc': 0.9411764705882353, 'longballsPerc': 0.5}, 'team': 'Atlético Madrid', 'name': 'jan-oblak', 'rating': 6, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a37'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 92, 'accuratePass': 84, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 3, 'totalClearance': 2, 'totalTackle': 4, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 106, 'possessionLostCtrl': 9, 'expectedAssists': 0.0571496, 'passPerc': 0.9130434782608695, 'longballsPerc': 0.5555555555555556}, 'team': 'Atlético Madrid', 'name': 'cesar-azpilicueta', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a39'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 71, 'accuratePass': 66, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'duelLost': 2, 'totalClearance': 3, 'outfielderBlock': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 7, 'expectedAssists': 0.00600787, 'passPerc': 0.9295774647887324, 'longballsPerc': 0.3333333333333333}, 'team': 'Atlético Madrid', 'name': 'robin-le-normand', 'rating': 6.4, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a3a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 37, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 2, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'totalContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 11, 'expectedGoals': 0.0543, 'keyPass': 1, 'expectedAssists': 0.0735944, 'passPerc': 0.8604651162790697, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'marcos-llorente', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a3b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 58, 'accuratePass': 49, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 74, 'possessionLostCtrl': 13, 'expectedGoals': 0.0469, 'keyPass': 1, 'expectedAssists': 0.129401, 'passPerc': 0.8448275862068966, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'pablo-barrios', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a3e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 33, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'wasFouled': 1, 'minutesPlayed': 78, 'touches': 48, 'possessionLostCtrl': 11, 'expectedGoals': 0.1268, 'keyPass': 1, 'expectedAssists': 0.0595402, 'passPerc': 0.8461538461538461, 'longballsPerc': 1.0}, 'team': 'Atlético Madrid', 'name': 'antoine-griezmann', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a3f'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 33, 'totalLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 11, 'duelWon': 5, 'challengeLost': 3, 'dispossessed': 3, 'totalContest': 4, 'wonContest': 2, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 3, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 14, 'expectedGoals': 0.6713, 'expectedAssists': 0.0330773, 'passPerc': 0.8048780487804879, 'longballsPerc': None}, 'team': 'Atlético Madrid', 'name': 'samuel-lino', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a4d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 17, 'totalLongBalls': 17, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 2, 'saves': 2, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 14, 'goalsPrevented': 0.811, 'passPerc': 0.5483870967741935, 'longballsPerc': 0.23529411764705882}, 'team': 'Real Valladolid', 'name': 'karl-hein', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a4e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 36, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 3, 'totalClearance': 5, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 78, 'possessionLostCtrl': 14, 'keyPass': 2, 'expectedAssists': 0.216648, 'passPerc': 0.8571428571428571, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Valladolid', 'name': 'luis-perez', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a50'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 53, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'totalClearance': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 3, 'passPerc': 0.9464285714285714, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Valladolid', 'name': 'boyomo-flavien', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a51'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 26, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 1, 'dispossessed': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 56, 'possessionLostCtrl': 15, 'expectedGoals': 0.0442, 'keyPass': 1, 'expectedAssists': 0.104147, 'passPerc': 0.7647058823529411, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'lucas-rosa', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a53'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 40, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'duelLost': 7, 'duelWon': 7, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 3, 'wonContest': 1, 'bigChanceCreated': 1, 'blockedScoringAttempt': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 82, 'touches': 65, 'possessionLostCtrl': 10, 'expectedGoals': 0.0214, 'keyPass': 1, 'expectedAssists': 0.202651, 'passPerc': 0.9302325581395349, 'longballsPerc': 0.75}, 'team': 'Real Valladolid', 'name': 'kike-perez', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a54'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 21, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 1, 'duelWon': 4, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'totalTackle': 2, 'minutesPlayed': 82, 'touches': 39, 'possessionLostCtrl': 8, 'expectedGoals': 0.2087, 'passPerc': 0.7241379310344828, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'eray-comert', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a56'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 18, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 6, 'aerialLost': 1, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 8, 'wonContest': 5, 'onTargetScoringAttempt': 1, 'goals': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 51, 'possessionLostCtrl': 25, 'expectedGoals': 0.051, 'keyPass': 2, 'expectedAssists': 0.0974731, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.5}, 'team': 'Real Valladolid', 'name': 'raul-moro', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a57'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 8, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 1, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'fouls': 1, 'totalOffside': 4, 'minutesPlayed': 90, 'touches': 18, 'possessionLostCtrl': 6, 'expectedGoals': 0.2605, 'keyPass': 1, 'expectedAssists': 0.0189122, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Real Valladolid', 'name': 'mamadou-sylla', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330a64'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 22, 'totalLongBalls': 12, 'accurateLongBalls': 6, 'goalAssist': 0, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 6, 'goalsPrevented': -0.8561, 'passPerc': 0.7857142857142857, 'longballsPerc': 0.5}, 'team': 'Espanyol', 'name': 'joan-garcia', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a66'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 38, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 3, 'totalClearance': 5, 'outfielderBlock': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 9, 'expectedAssists': 0.00551192, 'passPerc': 0.8636363636363636, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'omar-el-hilali', 'rating': 6.6, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a67'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 66, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 2, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 77, 'possessionLostCtrl': 6, 'expectedGoals': 0.268, 'expectedAssists': 0.00873332, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.6666666666666666}, 'team': 'Espanyol', 'name': 'sergi-gomez', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a68'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 87, 'accuratePass': 66, 'totalLongBalls': 13, 'accurateLongBalls': 5, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 6, 'duelLost': 2, 'duelWon': 6, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'minutesPlayed': 90, 'touches': 96, 'possessionLostCtrl': 23, 'keyPass': 1, 'expectedAssists': 0.0510632, 'passPerc': 0.7586206896551724, 'longballsPerc': 0.38461538461538464}, 'team': 'Espanyol', 'name': 'leandro-cabrera', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a69'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 32, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 2, 'dispossessed': 2, 'totalClearance': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 16, 'keyPass': 1, 'expectedAssists': 0.0270248, 'passPerc': 0.7804878048780488, 'longballsPerc': 0.3333333333333333}, 'team': 'Espanyol', 'name': 'carlos-romero', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a6b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 47, 'accuratePass': 42, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 3, 'minutesPlayed': 78, 'touches': 56, 'possessionLostCtrl': 9, 'passPerc': 0.8936170212765957, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'jose-gragera', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a6e'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 22, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 3, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 9, 'expectedGoals': 0.1041, 'expectedAssists': 0.0156015, 'passPerc': 0.8461538461538461, 'longballsPerc': None}, 'team': 'Espanyol', 'name': 'javi-puado', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330a7b'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 6, 'totalLongBalls': 12, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 5, 'punches': 1, 'minutesPlayed': 90, 'touches': 22, 'possessionLostCtrl': 9, 'goalsPrevented': 0.2316, 'passPerc': 0.4, 'longballsPerc': 0.25}, 'team': 'Mallorca', 'name': 'dominik-greif', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a7c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 8, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 2, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 5, 'fouls': 2, 'minutesPlayed': 90, 'touches': 54, 'possessionLostCtrl': 14, 'keyPass': 2, 'expectedAssists': 0.0911744, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'pablo-maffeo', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a7d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 14, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 6, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 4, 'passPerc': 0.8235294117647058, 'longballsPerc': 0.5}, 'team': 'Mallorca', 'name': 'martin-valjent', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a7e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 2, 'totalClearance': 2, 'outfielderBlock': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 1, 'expectedAssists': 0.101988, 'passPerc': 0.975, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'antonio-raillo', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a7f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 38, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 6, 'wonContest': 4, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 13, 'expectedGoals': 0.0216, 'keyPass': 2, 'expectedAssists': 0.0369277, 'passPerc': 0.8444444444444444, 'longballsPerc': 0.3333333333333333}, 'team': 'Mallorca', 'name': 'johan-mojica', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a81'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 41, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'totalClearance': 3, 'interceptionWon': 3, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 52, 'possessionLostCtrl': 3, 'expectedAssists': 0.0106771, 'passPerc': 0.9318181818181818, 'longballsPerc': 0.75}, 'team': 'Mallorca', 'name': 'omar-mascarell', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a82'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 36, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 16, 'duelWon': 9, 'challengeLost': 5, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 7, 'fouls': 7, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 7, 'expectedGoals': 0.0444, 'keyPass': 1, 'expectedAssists': 0.0563636, 'passPerc': 0.9230769230769231, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'samuel-costa', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a84'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 5, 'aerialWon': 6, 'duelLost': 10, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 3, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 3, 'goals': 1, 'totalClearance': 3, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 14, 'expectedGoals': 0.4381, 'keyPass': 1, 'expectedAssists': 0.0124106, 'passPerc': 0.7777777777777778, 'longballsPerc': 1.0}, 'team': 'Mallorca', 'name': 'vedat-muriqi', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a92'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 21, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'punches': 1, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 2, 'goalsPrevented': -0.394, 'passPerc': 0.9130434782608695, 'longballsPerc': 0.5}, 'team': 'Real Madrid', 'name': 'thibaut-courtois', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a93'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 44, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'totalClearance': 3, 'interceptionWon': 2, 'fouls': 1, 'minutesPlayed': 87, 'touches': 68, 'possessionLostCtrl': 11, 'expectedAssists': 0.0318211, 'passPerc': 0.8627450980392157, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'daniel-carvajal', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a94'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 58, 'totalLongBalls': 5, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 4, 'challengeLost': 3, 'blockedScoringAttempt': 1, 'totalClearance': 5, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 2, 'expectedGoals': 0.0203, 'expectedAssists': 0.0115748, 'passPerc': 0.9666666666666667, 'longballsPerc': 0.6}, 'team': 'Real Madrid', 'name': 'eder-militao', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a95'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 64, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 86, 'possessionLostCtrl': 9, 'expectedGoals': 0.0189, 'expectedAssists': 0.00793408, 'passPerc': 0.8888888888888888, 'longballsPerc': 0.25}, 'team': 'Real Madrid', 'name': 'antonio-rudiger', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a96'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 64, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 3, 'totalClearance': 4, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 2, 'expectedAssists': 0.0185238, 'passPerc': 0.9846153846153847, 'longballsPerc': 0.8}, 'team': 'Real Madrid', 'name': 'ferland-mendy', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a97'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 68, 'totalLongBalls': 2, 'goalAssist': 0, 'aerialWon': 2, 'duelWon': 4, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0924121, 'passPerc': 0.8831168831168831, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'federico-valverde', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a99'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 72, 'accuratePass': 62, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'totalTackle': 6, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 88, 'touches': 87, 'possessionLostCtrl': 12, 'keyPass': 2, 'expectedAssists': 0.18994, 'passPerc': 0.8611111111111112, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Madrid', 'name': 'jude-bellingham', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a9a'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 59, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 1, 'duelLost': 2, 'duelWon': 5, 'totalContest': 3, 'wonContest': 2, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 11, 'expectedGoals': 0.1572, 'keyPass': 1, 'expectedAssists': 0.122976, 'passPerc': 0.9076923076923077, 'longballsPerc': None}, 'team': 'Real Madrid', 'name': 'rodrygo', 'rating': 8.1, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a9b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 25, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 3, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 11, 'expectedGoals': 0.299, 'expectedAssists': 0.0866957, 'passPerc': 0.8064516129032258, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'kylian-mbappe', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330a9c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 31, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 11, 'duelWon': 5, 'dispossessed': 5, 'totalContest': 8, 'wonContest': 3, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'minutesPlayed': 88, 'touches': 64, 'possessionLostCtrl': 24, 'expectedGoals': 0.06, 'keyPass': 6, 'expectedAssists': 0.421279, 'passPerc': 0.775, 'longballsPerc': 1.0}, 'team': 'Real Madrid', 'name': 'vinicius-junior', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330aa8'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 26, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'errorLeadToAShot': 2, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 8, 'goalsPrevented': -1.0078, 'passPerc': 0.8387096774193549, 'longballsPerc': 0.5555555555555556}, 'team': 'Real Sociedad', 'name': 'alex-remiro', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330aa9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 30, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 2, 'minutesPlayed': 75, 'touches': 56, 'possessionLostCtrl': 11, 'expectedAssists': 0.0142265, 'passPerc': 0.8108108108108109, 'longballsPerc': 0.75}, 'team': 'Real Sociedad', 'name': 'hamari-traore', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330aaa'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 70, 'totalLongBalls': 7, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 6, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 4, 'fouls': 2, 'minutesPlayed': 90, 'touches': 88, 'possessionLostCtrl': 7, 'expectedGoals': 0.2215, 'keyPass': 1, 'expectedAssists': 0.0238196, 'passPerc': 0.9090909090909091, 'longballsPerc': 0.7142857142857143}, 'team': 'Real Sociedad', 'name': 'aritz-elustondo', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330aab'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 45, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 4, 'totalClearance': 5, 'clearanceOffLine': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 6, 'expectedAssists': 0.135712, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.8}, 'team': 'Real Sociedad', 'name': 'jon-pacheco', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330aac'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 34, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'errorLeadToAGoal': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 14, 'expectedGoals': 0.0173, 'expectedAssists': 0.0107165, 'passPerc': 0.8717948717948718, 'longballsPerc': 0.5714285714285714}, 'team': 'Real Sociedad', 'name': 'lopez-javi', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330aad'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 35, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'duelLost': 9, 'duelWon': 8, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 6, 'fouls': 4, 'minutesPlayed': 90, 'touches': 72, 'possessionLostCtrl': 18, 'expectedGoals': 0.1238, 'keyPass': 1, 'expectedAssists': 0.0244049, 'passPerc': 0.7608695652173914, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Sociedad', 'name': 'brais-mendez', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330ab1'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 9, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'challengeLost': 2, 'totalContest': 1, 'wonContest': 1, 'blockedScoringAttempt': 2, 'totalClearance': 1, 'minutesPlayed': 83, 'touches': 26, 'possessionLostCtrl': 12, 'expectedGoals': 0.2031, 'passPerc': 0.5625, 'longballsPerc': None}, 'team': 'Real Sociedad', 'name': 'mikel-oyarzabal', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330ab2'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 11, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 12, 'accurateCross': 4, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 2, 'duelWon': 5, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 38, 'possessionLostCtrl': 17, 'expectedGoals': 0.1248, 'keyPass': 2, 'expectedAssists': 0.335108, 'passPerc': 0.5789473684210527, 'longballsPerc': 0.5}, 'team': 'Real Sociedad', 'name': 'sheraldo-becker', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330abf'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 3, 'totalLongBalls': 13, 'accurateLongBalls': 3, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 3, 'minutesPlayed': 90, 'touches': 18, 'possessionLostCtrl': 10, 'goalsPrevented': -0.3916, 'passPerc': 0.23076923076923078, 'longballsPerc': 0.23076923076923078}, 'team': 'Rayo Vallecano', 'name': 'dani-cardenas', 'rating': 6.7, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'totalLongBalls': 3, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 2, 'dispossessed': 2, 'totalContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 34, 'possessionLostCtrl': 11, 'expectedGoals': 0.3979, 'expectedAssists': 0.0503246, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'andrei-ratiu', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 10, 'totalLongBalls': 8, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 5, 'duelLost': 1, 'duelWon': 5, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 9, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 12, 'expectedGoals': 0.0998, 'passPerc': 0.47619047619047616, 'longballsPerc': 0.125}, 'team': 'Rayo Vallecano', 'name': 'florian-lejeune', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 17, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 1, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 3, 'totalClearance': 8, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 6, 'keyPass': 1, 'expectedAssists': 0.0205581, 'passPerc': 0.7391304347826086, 'longballsPerc': 0.3333333333333333}, 'team': 'Rayo Vallecano', 'name': 'abdul-mumin', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 13, 'totalLongBalls': 7, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 7, 'duelWon': 14, 'challengeLost': 3, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 6, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 22, 'expectedGoals': 0.0277, 'expectedAssists': 0.0100467, 'passPerc': 0.48148148148148145, 'longballsPerc': 0.14285714285714285}, 'team': 'Rayo Vallecano', 'name': 'alfonso-espino', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 4, 'goalAssist': 0, 'totalCross': 1, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 3, 'minutesPlayed': 75, 'touches': 20, 'possessionLostCtrl': 10, 'expectedGoals': 0.1532, 'expectedAssists': 0.0232149, 'passPerc': 0.4, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'jorge-de-frutos', 'rating': 7.3, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac6'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 26, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 9, 'totalClearance': 5, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 6, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 4, 'expectedAssists': 0.0255329, 'passPerc': 0.896551724137931, 'longballsPerc': None}, 'team': 'Rayo Vallecano', 'name': 'oscar-valentin', 'rating': 7.1, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 5, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 75, 'touches': 40, 'possessionLostCtrl': 17, 'expectedGoals': 0.033, 'passPerc': 0.6818181818181818, 'longballsPerc': 0.5}, 'team': 'Rayo Vallecano', 'name': 'adrian-embarba', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ac9'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 2, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 11, 'expectedGoals': 0.0158, 'keyPass': 2, 'expectedAssists': 0.334334, 'passPerc': 0.7727272727272727, 'longballsPerc': 0.25}, 'team': 'Rayo Vallecano', 'name': 'isi-palazon', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330ad6'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 17, 'totalLongBalls': 24, 'accurateLongBalls': 10, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 2, 'saves': 4, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 15, 'goalsPrevented': 0.5255, 'passPerc': 0.53125, 'longballsPerc': 0.4166666666666667}, 'team': 'Valencia', 'name': 'giorgi-mamardashvili', 'rating': 7.1, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330ad7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 23, 'totalLongBalls': 8, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 12, 'expectedAssists': 0.0655513, 'passPerc': 0.7419354838709677, 'longballsPerc': 0.375}, 'team': 'Valencia', 'name': 'correia-thierry', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330ad8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 52, 'totalLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 2, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 1, 'penaltyConceded': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 69, 'possessionLostCtrl': 7, 'passPerc': 0.9285714285714286, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'cristhian-mosquera', 'rating': 6.2, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330ad9'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 33, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 5, 'challengeLost': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 4, 'passPerc': 0.9166666666666666, 'longballsPerc': 0.75}, 'team': 'Valencia', 'name': 'gasiorowski-yarek', 'rating': 6.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330ada'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 8, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 3, 'challengeLost': 1, 'totalContest': 1, 'totalClearance': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 77, 'touches': 25, 'possessionLostCtrl': 7, 'passPerc': 0.7272727272727273, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'jesus-vazquez', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330adb'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 7, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 2, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 4, 'blockedScoringAttempt': 1, 'totalTackle': 3, 'fouls': 1, 'totalOffside': 2, 'minutesPlayed': 77, 'touches': 26, 'possessionLostCtrl': 10, 'expectedGoals': 0.0116, 'expectedAssists': 0.0794974, 'passPerc': 0.5833333333333334, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'rafa-mir', 'rating': 5.9, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330adc'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 42, 'accuratePass': 30, 'totalLongBalls': 4, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 62, 'possessionLostCtrl': 19, 'expectedGoals': 0.0189, 'keyPass': 2, 'expectedAssists': 0.12581, 'passPerc': 0.7142857142857143, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'pepelu', 'rating': 7.2, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330add'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 5, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 4, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 86, 'touches': 35, 'possessionLostCtrl': 10, 'expectedAssists': 0.0163255, 'passPerc': 0.8823529411764706, 'longballsPerc': 1.0}, 'team': 'Valencia', 'name': 'javier-guerra', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330ae0'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 7, 'accuratePass': 4, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 6, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 2, 'shotOffTarget': 2, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 2, 'interceptionWon': 1, 'wasFouled': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 24, 'possessionLostCtrl': 5, 'expectedGoals': 0.9821, 'passPerc': 0.5714285714285714, 'longballsPerc': None}, 'team': 'Valencia', 'name': 'hugo-duro', 'rating': 7, 'match_result': 'L'}
{'_id': ObjectId('6764877a83201ea30d330aed'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 28, 'totalLongBalls': 11, 'accurateLongBalls': 5, 'goalAssist': 0, 'errorLeadToAShot': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 7, 'goalsPrevented': -0.0858, 'passPerc': 0.8, 'longballsPerc': 0.45454545454545453}, 'team': 'Barcelona', 'name': 'marc-andre-ter-stegen', 'rating': 6.4, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330aee'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 65, 'accuratePass': 60, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 5, 'duelWon': 3, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 83, 'possessionLostCtrl': 8, 'expectedAssists': 0.0591546, 'passPerc': 0.9230769230769231, 'longballsPerc': 0.4}, 'team': 'Barcelona', 'name': 'jules-kounde', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330af0'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 85, 'accuratePass': 75, 'totalLongBalls': 8, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 3, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 91, 'possessionLostCtrl': 10, 'expectedGoals': 0.0601, 'expectedAssists': 0.0398224, 'passPerc': 0.8823529411764706, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'inigo-martinez', 'rating': 6.6, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330af3'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 62, 'accuratePass': 52, 'totalLongBalls': 5, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 7, 'challengeLost': 1, 'totalContest': 3, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 2, 'totalClearance': 2, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 13, 'expectedGoals': 0.5996, 'keyPass': 2, 'expectedAssists': 0.164223, 'passPerc': 0.8387096774193549, 'longballsPerc': 1.0}, 'team': 'Barcelona', 'name': 'marc-casado', 'rating': 7.2, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330af4'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 40, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'aerialLost': 1, 'duelLost': 5, 'duelWon': 7, 'dispossessed': 2, 'totalContest': 5, 'wonContest': 3, 'bigChanceCreated': 2, 'bigChanceMissed': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 3, 'minutesPlayed': 86, 'touches': 67, 'possessionLostCtrl': 14, 'expectedGoals': 0.41, 'keyPass': 3, 'expectedAssists': 0.0806444, 'passPerc': 0.8695652173913043, 'longballsPerc': 0.5}, 'team': 'Barcelona', 'name': 'lamine-yamal', 'rating': 7.8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330af5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 45, 'accuratePass': 33, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 2, 'duelLost': 3, 'duelWon': 3, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'penaltyWon': 1, 'minutesPlayed': 90, 'touches': 64, 'possessionLostCtrl': 20, 'expectedGoals': 0.0586, 'keyPass': 3, 'expectedAssists': 0.151638, 'passPerc': 0.7333333333333333, 'longballsPerc': 0.8}, 'team': 'Barcelona', 'name': 'raphinha', 'rating': 8, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330af7'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 15, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 6, 'duelWon': 5, 'dispossessed': 3, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'goals': 2, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 31, 'possessionLostCtrl': 6, 'expectedGoals': 1.8161, 'keyPass': 1, 'expectedAssists': 0.04876, 'passPerc': 0.8823529411764706, 'longballsPerc': None}, 'team': 'Barcelona', 'name': 'robert-lewandowski', 'rating': 8.4, 'match_result': 'W'}
{'_id': ObjectId('6764877a83201ea30d330b03'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 12, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalClearance': 2, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'totalKeeperSweeper': 3, 'accurateKeeperSweeper': 3, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 5, 'goalsPrevented': 0.5412, 'passPerc': 0.75, 'longballsPerc': 0.5}, 'team': 'Osasuna', 'name': 'sergio-herrera', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b04'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 25, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 6, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 9, 'duelWon': 1, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 3, 'totalClearance': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 60, 'possessionLostCtrl': 21, 'keyPass': 1, 'expectedAssists': 0.0464529, 'passPerc': 0.8333333333333334, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'jesus-areso', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b05'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 51, 'accuratePass': 37, 'totalLongBalls': 11, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 5, 'duelLost': 3, 'duelWon': 6, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 7, 'fouls': 1, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 14, 'expectedGoals': 0.2406, 'expectedAssists': 0.00943753, 'passPerc': 0.7254901960784313, 'longballsPerc': 0.36363636363636365}, 'team': 'Osasuna', 'name': 'alejandro-catena', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b06'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 24, 'totalLongBalls': 12, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 3, 'onTargetScoringAttempt': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 49, 'possessionLostCtrl': 16, 'expectedGoals': 0.088, 'expectedAssists': 0.00771365, 'passPerc': 0.6153846153846154, 'longballsPerc': 0.08333333333333333}, 'team': 'Osasuna', 'name': 'herrando-jorge', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b09'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 63, 'accuratePass': 47, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 3, 'aerialWon': 5, 'duelLost': 8, 'duelWon': 10, 'challengeLost': 1, 'dispossessed': 1, 'totalClearance': 3, 'interceptionWon': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 4, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 21, 'expectedAssists': 0.0271834, 'passPerc': 0.746031746031746, 'longballsPerc': 0.2}, 'team': 'Osasuna', 'name': 'lucas-torro', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b0b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 30, 'totalLongBalls': 3, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 7, 'accurateCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 7, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'wasFouled': 3, 'fouls': 2, 'minutesPlayed': 78, 'touches': 56, 'possessionLostCtrl': 13, 'expectedGoals': 0.1769, 'keyPass': 2, 'expectedAssists': 0.356755, 'passPerc': 0.8571428571428571, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'ruben-garcia', 'rating': 7.5, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b0c'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 15, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 8, 'duelLost': 6, 'duelWon': 12, 'dispossessed': 1, 'totalContest': 2, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'outfielderBlock': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 17, 'expectedGoals': 0.1987, 'expectedAssists': 0.00961602, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Osasuna', 'name': 'ante-budimir', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b0d'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 37, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 5, 'wonContest': 2, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 2, 'hitWoodwork': 1, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 89, 'touches': 63, 'possessionLostCtrl': 11, 'expectedGoals': 0.7392, 'keyPass': 1, 'expectedAssists': 0.123965, 'passPerc': 0.9024390243902439, 'longballsPerc': 1.0}, 'team': 'Osasuna', 'name': 'aimar-oroz', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b1a'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 11, 'totalLongBalls': 29, 'accurateLongBalls': 8, 'goalAssist': 0, 'ownGoals': 1, 'savedShotsFromInsideTheBox': 5, 'saves': 6, 'minutesPlayed': 90, 'touches': 39, 'possessionLostCtrl': 21, 'goalsPrevented': 0.2557, 'passPerc': 0.34375, 'longballsPerc': 0.27586206896551724}, 'team': 'Leganés', 'name': 'juan-soriano', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b1b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 17, 'totalLongBalls': 6, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 11, 'duelWon': 6, 'challengeLost': 2, 'dispossessed': 3, 'totalContest': 1, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 19, 'passPerc': 0.6071428571428571, 'longballsPerc': 0.16666666666666666}, 'team': 'Leganés', 'name': 'valentin-rosier', 'rating': 6.2, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b1c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 32, 'accuratePass': 22, 'totalLongBalls': 9, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 5, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 88, 'touches': 45, 'possessionLostCtrl': 11, 'expectedGoals': 0.0203, 'passPerc': 0.6875, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'aritz-arambarri', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b1d'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 30, 'accuratePass': 23, 'totalLongBalls': 6, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 1, 'totalClearance': 8, 'outfielderBlock': 1, 'interceptionWon': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 42, 'possessionLostCtrl': 7, 'passPerc': 0.7666666666666667, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'sergio-gonzalez', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b1e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 20, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 2, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 6, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 4, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 13, 'expectedGoals': 0.1229, 'keyPass': 3, 'expectedAssists': 0.285928, 'passPerc': 0.8, 'longballsPerc': 0.25}, 'team': 'Leganés', 'name': 'javier-hernandez', 'rating': 7.8, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b1f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 29, 'accuratePass': 17, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 3, 'aerialWon': 4, 'duelLost': 5, 'duelWon': 6, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 88, 'touches': 40, 'possessionLostCtrl': 16, 'expectedGoals': 0.181, 'expectedAssists': 0.00690066, 'passPerc': 0.5862068965517241, 'longballsPerc': 0.3333333333333333}, 'team': 'Leganés', 'name': 'darko-brasanac', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b20'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 37, 'accuratePass': 23, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 4, 'duelWon': 6, 'dispossessed': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 3, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 18, 'expectedGoals': 0.0301, 'passPerc': 0.6216216216216216, 'longballsPerc': 0.2}, 'team': 'Leganés', 'name': 'yvan-neyou', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b23'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 9, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 9, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 5, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 15, 'expectedAssists': 0.025405, 'passPerc': 0.6, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'enric-franquesa', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877a83201ea30d330b24'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 3, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'duelLost': 7, 'duelWon': 5, 'challengeLost': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'wasFouled': 5, 'totalOffside': 2, 'minutesPlayed': 88, 'touches': 25, 'possessionLostCtrl': 13, 'expectedGoals': 0.1346, 'passPerc': 0.3333333333333333, 'longballsPerc': None}, 'team': 'Leganés', 'name': 'miguel-de-la-fuente', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b31'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 24, 'totalLongBalls': 14, 'accurateLongBalls': 5, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 10, 'goalsPrevented': -0.4702, 'passPerc': 0.7058823529411765, 'longballsPerc': 0.35714285714285715}, 'team': 'Las Palmas', 'name': 'jasper-cillessen', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b32'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 17, 'accuratePass': 12, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'duelLost': 5, 'duelWon': 1, 'challengeLost': 3, 'bigChanceCreated': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 76, 'touches': 34, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.240554, 'passPerc': 0.7058823529411765, 'longballsPerc': 0.6666666666666666}, 'team': 'Las Palmas', 'name': 'park-marvin', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b33'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 44, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 3, 'ownGoals': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 57, 'possessionLostCtrl': 5, 'passPerc': 0.8979591836734694, 'longballsPerc': 0.4}, 'team': 'Las Palmas', 'name': 'alex-suarez', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b34'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 52, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 7, 'expectedGoals': 0.0661, 'keyPass': 1, 'expectedAssists': 0.0387058, 'passPerc': 0.8813559322033898, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'mika-marmol', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b37'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 77, 'accuratePass': 65, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 3, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 89, 'possessionLostCtrl': 16, 'expectedGoals': 0.008, 'expectedAssists': 0.0181508, 'passPerc': 0.8441558441558441, 'longballsPerc': 0.42857142857142855}, 'team': 'Las Palmas', 'name': 'kirian-rodriguez', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b39'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 27, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 3, 'duelLost': 4, 'duelWon': 3, 'dispossessed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 11, 'expectedGoals': 0.208, 'keyPass': 4, 'expectedAssists': 0.267512, 'passPerc': 0.7714285714285715, 'longballsPerc': 0.3333333333333333}, 'team': 'Las Palmas', 'name': 'javier-munoz', 'rating': 7.3, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b3a'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 15, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'accurateCross': 1, 'aerialLost': 2, 'duelLost': 9, 'duelWon': 2, 'totalContest': 8, 'wonContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 3, 'blockedScoringAttempt': 1, 'fouls': 1, 'minutesPlayed': 87, 'touches': 36, 'possessionLostCtrl': 12, 'expectedGoals': 0.3168, 'keyPass': 1, 'expectedAssists': 0.0317666, 'passPerc': 0.9375, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'alberto-moleiro', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b3b'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 11, 'goalAssist': 0, 'aerialLost': 7, 'aerialWon': 6, 'duelLost': 8, 'duelWon': 8, 'dispossessed': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 1, 'hitWoodwork': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 87, 'touches': 33, 'possessionLostCtrl': 10, 'expectedGoals': 0.5163, 'keyPass': 1, 'expectedAssists': 0.0243801, 'passPerc': 0.6875, 'longballsPerc': None}, 'team': 'Las Palmas', 'name': 'oliver-mcburnie', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b48'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 22, 'totalLongBalls': 27, 'accurateLongBalls': 7, 'goalAssist': 0, 'totalClearance': 1, 'savedShotsFromInsideTheBox': 3, 'saves': 4, 'punches': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 55, 'possessionLostCtrl': 21, 'goalsPrevented': -0.8727, 'passPerc': 0.5116279069767442, 'longballsPerc': 0.25925925925925924}, 'team': 'Sevilla', 'name': 'orjan-nyland', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b49'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 52, 'accuratePass': 42, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 9, 'challengeLost': 2, 'totalContest': 1, 'shotOffTarget': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 4, 'wasFouled': 4, 'minutesPlayed': 90, 'touches': 84, 'possessionLostCtrl': 11, 'expectedGoals': 0.019, 'expectedAssists': 0.024425, 'passPerc': 0.8076923076923077, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'jose-angel-carmona', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b4a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 60, 'accuratePass': 56, 'totalLongBalls': 6, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 7, 'duelLost': 3, 'duelWon': 9, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 2, 'totalClearance': 7, 'interceptionWon': 1, 'totalTackle': 1, 'ownGoals': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 82, 'possessionLostCtrl': 5, 'expectedGoals': 0.1879, 'expectedAssists': 0.0069712, 'passPerc': 0.9333333333333333, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'tanguy-nianzou', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b4b'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 51, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 3, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 5, 'shotOffTarget': 1, 'totalClearance': 5, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 3, 'expectedGoals': 0.0278, 'expectedAssists': 0.0229199, 'passPerc': 0.9622641509433962, 'longballsPerc': 1.0}, 'team': 'Sevilla', 'name': 'nemanja-gudelj', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b4c'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 33, 'accuratePass': 26, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'duelLost': 3, 'duelWon': 4, 'totalContest': 2, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 52, 'possessionLostCtrl': 12, 'expectedGoals': 0.0282, 'keyPass': 1, 'expectedAssists': 0.0982013, 'passPerc': 0.7878787878787878, 'longballsPerc': 0.2}, 'team': 'Sevilla', 'name': 'adria-pedrosa', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b4d'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 54, 'accuratePass': 39, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 3, 'duelWon': 6, 'outfielderBlock': 2, 'interceptionWon': 1, 'totalTackle': 3, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 19, 'expectedAssists': 0.0883714, 'passPerc': 0.7222222222222222, 'longballsPerc': 0.3333333333333333}, 'team': 'Sevilla', 'name': 'lucien-agoume', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b4e'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 38, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'bigChanceMissed': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 2, 'totalTackle': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 9, 'expectedGoals': 0.4775, 'keyPass': 2, 'expectedAssists': 0.0238621, 'passPerc': 0.926829268292683, 'longballsPerc': None}, 'team': 'Sevilla', 'name': 'djibril-sow', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b4f'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 48, 'accuratePass': 35, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialLost': 3, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 6, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'blockedScoringAttempt': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 68, 'possessionLostCtrl': 20, 'expectedGoals': 0.1589, 'keyPass': 2, 'expectedAssists': 0.0834737, 'passPerc': 0.7291666666666666, 'longballsPerc': 0.4}, 'team': 'Sevilla', 'name': 'lucas-ocampos', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b50'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 23, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 3, 'accurateCross': 1, 'duelLost': 4, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 2, 'shotOffTarget': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 83, 'touches': 42, 'possessionLostCtrl': 9, 'expectedGoals': 0.6043, 'keyPass': 4, 'expectedAssists': 0.0646599, 'passPerc': 0.8846153846153846, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'juanlu-sanchez', 'rating': 7.4, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b52'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 15, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 1, 'aerialLost': 1, 'aerialWon': 4, 'duelLost': 3, 'duelWon': 6, 'dispossessed': 2, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'wasFouled': 2, 'totalOffside': 1, 'minutesPlayed': 83, 'touches': 34, 'possessionLostCtrl': 11, 'expectedGoals': 0.0609, 'keyPass': 1, 'expectedAssists': 0.564565, 'passPerc': 0.8333333333333334, 'longballsPerc': 0.5}, 'team': 'Sevilla', 'name': 'romero-isaac', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b5f'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 17, 'totalLongBalls': 4, 'accurateLongBalls': 1, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 26, 'possessionLostCtrl': 3, 'goalsPrevented': -0.0228, 'passPerc': 0.85, 'longballsPerc': 0.25}, 'team': 'Celta Vigo', 'name': 'ivan-villar', 'rating': 6.5, 'match_result': 'W'}
{'_id': ObjectId('6764877b83201ea30d330b62'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 92, 'accuratePass': 79, 'totalLongBalls': 7, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 7, 'duelLost': 1, 'duelWon': 7, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 1, 'minutesPlayed': 90, 'touches': 102, 'possessionLostCtrl': 13, 'expectedAssists': 0.0154306, 'passPerc': 0.8586956521739131, 'longballsPerc': 0.2857142857142857}, 'team': 'Celta Vigo', 'name': 'carlos-dominguez', 'rating': 7, 'match_result': 'W'}
{'_id': ObjectId('6764877b83201ea30d330b63'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 32, 'totalLongBalls': 3, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 2, 'aerialWon': 1, 'duelLost': 7, 'duelWon': 8, 'dispossessed': 1, 'totalContest': 6, 'wonContest': 2, 'totalClearance': 2, 'totalTackle': 3, 'wasFouled': 2, 'fouls': 2, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 20, 'keyPass': 1, 'expectedAssists': 0.0647193, 'passPerc': 0.7441860465116279, 'longballsPerc': 0.3333333333333333}, 'team': 'Celta Vigo', 'name': 'hugo-alvarez', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877b83201ea30d330b64'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 49, 'accuratePass': 44, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 2, 'totalClearance': 1, 'interceptionWon': 3, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 59, 'possessionLostCtrl': 8, 'expectedAssists': 0.0295585, 'passPerc': 0.8979591836734694, 'longballsPerc': 0.75}, 'team': 'Celta Vigo', 'name': 'damian-rodriguez', 'rating': 6.8, 'match_result': 'W'}
{'_id': ObjectId('6764877b83201ea30d330b66'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 57, 'accuratePass': 46, 'totalLongBalls': 10, 'accurateLongBalls': 6, 'goalAssist': 0, 'totalCross': 5, 'duelWon': 4, 'totalContest': 1, 'wonContest': 1, 'bigChanceCreated': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 85, 'possessionLostCtrl': 20, 'expectedGoals': 0.035, 'keyPass': 1, 'expectedAssists': 0.404599, 'passPerc': 0.8070175438596491, 'longballsPerc': 0.6}, 'team': 'Celta Vigo', 'name': 'oscar-mingueza', 'rating': 7.6, 'match_result': 'W'}
{'_id': ObjectId('6764877b83201ea30d330b67'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 24, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 4, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'onTargetScoringAttempt': 2, 'goals': 1, 'totalClearance': 2, 'wasFouled': 3, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 12, 'expectedGoals': 0.6993, 'expectedAssists': 0.0781161, 'passPerc': 0.7741935483870968, 'longballsPerc': 1.0}, 'team': 'Celta Vigo', 'name': 'iago-aspas', 'rating': 7.4, 'match_result': 'W'}
{'_id': ObjectId('6764877b83201ea30d330b69'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 9, 'accuratePass': 6, 'goalAssist': 0, 'totalCross': 1, 'accurateCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 11, 'totalContest': 2, 'wonContest': 1, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 8, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 78, 'touches': 27, 'possessionLostCtrl': 9, 'expectedAssists': 0.120681, 'passPerc': 0.6666666666666666, 'longballsPerc': None}, 'team': 'Celta Vigo', 'name': 'douvikas-anastasios', 'rating': 6.9, 'match_result': 'W'}
{'_id': ObjectId('6764877b83201ea30d330b76'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 31, 'accuratePass': 11, 'totalLongBalls': 30, 'accurateLongBalls': 10, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 1, 'saves': 2, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 34, 'possessionLostCtrl': 20, 'goalsPrevented': -0.2629, 'passPerc': 0.3548387096774194, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'antonio-sivera', 'rating': 6.4, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b77'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 4, 'accurateCross': 2, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 2, 'interceptionWon': 2, 'totalTackle': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 61, 'possessionLostCtrl': 10, 'keyPass': 2, 'expectedAssists': 0.0690504, 'passPerc': 0.9117647058823529, 'longballsPerc': 0.6666666666666666}, 'team': 'Deportivo Alavés', 'name': 'vicente-carlos', 'rating': 6.7, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b78'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 16, 'totalLongBalls': 13, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelLost': 8, 'duelWon': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 1, 'fouls': 8, 'minutesPlayed': 90, 'touches': 35, 'possessionLostCtrl': 12, 'passPerc': 0.5925925925925926, 'longballsPerc': 0.3076923076923077}, 'team': 'Deportivo Alavés', 'name': 'abqar-abdelkabir', 'rating': 6, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b79'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'totalLongBalls': 6, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 2, 'duelWon': 3, 'totalContest': 1, 'totalClearance': 4, 'lastManTackle': 1, 'totalTackle': 3, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 7, 'passPerc': 0.7619047619047619, 'longballsPerc': 0.3333333333333333}, 'team': 'Deportivo Alavés', 'name': 'nahuel-tenaglia', 'rating': 6.5, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b7a'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 24, 'accuratePass': 19, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 6, 'duelWon': 2, 'dispossessed': 3, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 45, 'possessionLostCtrl': 13, 'expectedAssists': 0.0134096, 'passPerc': 0.7916666666666666, 'longballsPerc': 1.0}, 'team': 'Deportivo Alavés', 'name': 'diarra-moussa', 'rating': 6.1, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b7b'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 41, 'accuratePass': 33, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 3, 'totalContest': 2, 'wonContest': 2, 'totalClearance': 1, 'interceptionWon': 1, 'totalTackle': 1, 'fouls': 1, 'minutesPlayed': 80, 'touches': 54, 'possessionLostCtrl': 10, 'keyPass': 1, 'expectedAssists': 0.0132518, 'passPerc': 0.8048780487804879, 'longballsPerc': 0.2}, 'team': 'Deportivo Alavés', 'name': 'ander-guevara', 'rating': 6.8, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b7c'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 35, 'accuratePass': 31, 'totalLongBalls': 7, 'accurateLongBalls': 3, 'goalAssist': 1, 'duelLost': 4, 'duelWon': 5, 'bigChanceCreated': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'interceptionWon': 2, 'totalTackle': 2, 'wasFouled': 3, 'fouls': 4, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 5, 'expectedGoals': 0.059, 'keyPass': 1, 'expectedAssists': 0.200143, 'passPerc': 0.8857142857142857, 'longballsPerc': 0.42857142857142855}, 'team': 'Deportivo Alavés', 'name': 'antonio-blanco', 'rating': 7.3, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b80'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 12, 'accuratePass': 8, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 5, 'aerialWon': 2, 'duelLost': 8, 'duelWon': 3, 'dispossessed': 1, 'totalContest': 1, 'shotOffTarget': 2, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'goals': 1, 'totalClearance': 1, 'totalTackle': 1, 'fouls': 2, 'minutesPlayed': 80, 'touches': 24, 'possessionLostCtrl': 8, 'expectedGoals': 0.5623, 'passPerc': 0.6666666666666666, 'longballsPerc': 0.5}, 'team': 'Deportivo Alavés', 'name': 'kike-garcia', 'rating': 7.4, 'match_result': 'L'}
{'_id': ObjectId('6764877b83201ea30d330b8d'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 38, 'accuratePass': 30, 'totalLongBalls': 12, 'accurateLongBalls': 4, 'goalAssist': 0, 'duelWon': 1, 'wasFouled': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'minutesPlayed': 90, 'touches': 44, 'possessionLostCtrl': 8, 'goalsPrevented': -0.011, 'passPerc': 0.7894736842105263, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'rui-silva', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b8e'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 28, 'accuratePass': 23, 'totalLongBalls': 1, 'goalAssist': 0, 'totalCross': 2, 'duelLost': 1, 'duelWon': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 3, 'interceptionWon': 1, 'totalTackle': 2, 'fouls': 1, 'minutesPlayed': 90, 'touches': 48, 'possessionLostCtrl': 7, 'expectedGoals': 0.1104, 'keyPass': 1, 'expectedAssists': 0.0130409, 'passPerc': 0.8214285714285714, 'longballsPerc': None}, 'team': 'Real Betis', 'name': 'youssouf-sabaly', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b8f'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 44, 'accuratePass': 38, 'totalLongBalls': 12, 'accurateLongBalls': 7, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 1, 'duelWon': 2, 'dispossessed': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 2, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 58, 'possessionLostCtrl': 8, 'expectedGoals': 0.1674, 'expectedAssists': 0.0089912, 'passPerc': 0.8636363636363636, 'longballsPerc': 0.5833333333333334}, 'team': 'Real Betis', 'name': 'marc-bartra', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b90'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 53, 'accuratePass': 44, 'totalLongBalls': 9, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 5, 'outfielderBlock': 2, 'interceptionWon': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 63, 'possessionLostCtrl': 9, 'passPerc': 0.8301886792452831, 'longballsPerc': 0.3333333333333333}, 'team': 'Real Betis', 'name': 'diego-llorente', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b91'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 25, 'accuratePass': 16, 'totalLongBalls': 5, 'accurateLongBalls': 1, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 1, 'duelLost': 9, 'duelWon': 5, 'challengeLost': 3, 'dispossessed': 2, 'totalContest': 3, 'wonContest': 2, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 4, 'interceptionWon': 1, 'totalTackle': 2, 'wasFouled': 1, 'fouls': 2, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 53, 'possessionLostCtrl': 15, 'expectedGoals': 0.0665, 'expectedAssists': 0.00681203, 'passPerc': 0.64, 'longballsPerc': 0.2}, 'team': 'Real Betis', 'name': 'romain-perraud', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b92'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 34, 'accuratePass': 31, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'blockedScoringAttempt': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'totalTackle': 1, 'minutesPlayed': 77, 'touches': 44, 'possessionLostCtrl': 6, 'expectedGoals': 0.1099, 'expectedAssists': 0.016218, 'passPerc': 0.9117647058823529, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'william-carvalho', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b93'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 18, 'accuratePass': 14, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalClearance': 4, 'interceptionWon': 1, 'minutesPlayed': 77, 'touches': 23, 'possessionLostCtrl': 4, 'keyPass': 1, 'passPerc': 0.7777777777777778, 'longballsPerc': 0.6666666666666666}, 'team': 'Real Betis', 'name': 'marc-roca', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330b95'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 25, 'totalLongBalls': 1, 'accurateLongBalls': 1, 'goalAssist': 1, 'totalCross': 7, 'accurateCross': 4, 'duelLost': 5, 'duelWon': 6, 'challengeLost': 1, 'dispossessed': 2, 'totalContest': 1, 'bigChanceCreated': 1, 'shotOffTarget': 2, 'totalTackle': 3, 'wasFouled': 3, 'fouls': 1, 'minutesPlayed': 90, 'touches': 50, 'possessionLostCtrl': 10, 'expectedGoals': 0.0415, 'keyPass': 5, 'expectedAssists': 0.667958, 'passPerc': 0.9259259259259259, 'longballsPerc': 1.0}, 'team': 'Real Betis', 'name': 'nabil-fekir', 'rating': 7.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330ba4'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 39, 'accuratePass': 27, 'totalLongBalls': 13, 'accurateLongBalls': 2, 'goalAssist': 0, 'savedShotsFromInsideTheBox': 3, 'saves': 3, 'totalKeeperSweeper': 1, 'accurateKeeperSweeper': 1, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 12, 'goalsPrevented': 0.348, 'passPerc': 0.6923076923076923, 'longballsPerc': 0.15384615384615385}, 'team': 'Girona FC', 'name': 'paulo-gazzaniga', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330ba5'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 75, 'accuratePass': 66, 'totalLongBalls': 5, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 2, 'duelWon': 2, 'totalClearance': 2, 'totalTackle': 2, 'errorLeadToAShot': 1, 'minutesPlayed': 90, 'touches': 92, 'possessionLostCtrl': 12, 'expectedAssists': 0.014028, 'passPerc': 0.88, 'longballsPerc': 0.8}, 'team': 'Girona FC', 'name': 'arnau-martinez', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330ba6'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 58, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'totalClearance': 4, 'outfielderBlock': 2, 'totalTackle': 2, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 1, 'passPerc': 0.9830508474576272, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'david-lopez', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330ba7'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 80, 'accuratePass': 71, 'totalLongBalls': 9, 'accurateLongBalls': 5, 'goalAssist': 0, 'duelLost': 1, 'duelWon': 7, 'totalContest': 3, 'wonContest': 3, 'totalClearance': 3, 'outfielderBlock': 1, 'interceptionWon': 5, 'totalTackle': 4, 'fouls': 1, 'minutesPlayed': 90, 'touches': 97, 'possessionLostCtrl': 9, 'expectedAssists': 0.0254077, 'passPerc': 0.8875, 'longballsPerc': 0.5555555555555556}, 'team': 'Girona FC', 'name': 'daley-blind', 'rating': 7.7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330ba8'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 43, 'accuratePass': 37, 'totalLongBalls': 4, 'accurateLongBalls': 3, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 2, 'duelLost': 3, 'duelWon': 2, 'dispossessed': 1, 'totalContest': 2, 'totalClearance': 1, 'totalTackle': 1, 'wasFouled': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 70, 'possessionLostCtrl': 14, 'keyPass': 2, 'expectedAssists': 0.265842, 'passPerc': 0.8604651162790697, 'longballsPerc': 0.75}, 'team': 'Girona FC', 'name': 'miguel-gutierrez', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bab'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 70, 'accuratePass': 62, 'goalAssist': 0, 'duelLost': 3, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 81, 'possessionLostCtrl': 13, 'keyPass': 3, 'expectedAssists': 0.428018, 'passPerc': 0.8857142857142857, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'ivan-martin', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bac'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 40, 'accuratePass': 36, 'totalLongBalls': 2, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 5, 'accurateCross': 1, 'duelLost': 11, 'duelWon': 9, 'challengeLost': 2, 'dispossessed': 6, 'totalContest': 5, 'wonContest': 3, 'shotOffTarget': 3, 'onTargetScoringAttempt': 1, 'interceptionWon': 1, 'totalTackle': 4, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 81, 'touches': 77, 'possessionLostCtrl': 19, 'expectedGoals': 0.166, 'keyPass': 2, 'expectedAssists': 0.145342, 'passPerc': 0.9, 'longballsPerc': 1.0}, 'team': 'Girona FC', 'name': 'bryan-gil', 'rating': 7.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bad'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 15, 'accuratePass': 14, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 4, 'duelWon': 1, 'challengeLost': 1, 'bigChanceMissed': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'hitWoodwork': 1, 'outfielderBlock': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 1, 'totalOffside': 1, 'minutesPlayed': 81, 'touches': 25, 'possessionLostCtrl': 3, 'expectedGoals': 0.2601, 'keyPass': 1, 'expectedAssists': 0.00713775, 'passPerc': 0.9333333333333333, 'longballsPerc': None}, 'team': 'Girona FC', 'name': 'abel-ruiz', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bba'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 36, 'accuratePass': 19, 'totalLongBalls': 22, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 1, 'goodHighClaim': 1, 'savedShotsFromInsideTheBox': 1, 'saves': 1, 'totalKeeperSweeper': 2, 'accurateKeeperSweeper': 2, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 17, 'goalsPrevented': -0.0132, 'passPerc': 0.5277777777777778, 'longballsPerc': 0.22727272727272727}, 'team': 'Athletic Club', 'name': 'padilla-alex', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bbb'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 16, 'goalAssist': 0, 'duelLost': 4, 'duelWon': 2, 'challengeLost': 1, 'dispossessed': 1, 'totalContest': 1, 'wonContest': 1, 'totalClearance': 2, 'totalTackle': 1, 'fouls': 3, 'minutesPlayed': 81, 'touches': 36, 'possessionLostCtrl': 5, 'expectedAssists': 0.0509136, 'passPerc': 0.8, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'andoni-gorosabel', 'rating': 6.3, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bbc'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 59, 'accuratePass': 52, 'totalLongBalls': 7, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 5, 'duelWon': 5, 'dispossessed': 1, 'totalContest': 1, 'totalClearance': 6, 'interceptionWon': 2, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 75, 'possessionLostCtrl': 10, 'expectedAssists': 0.00519094, 'passPerc': 0.8813559322033898, 'longballsPerc': 0.5714285714285714}, 'team': 'Athletic Club', 'name': 'yeray-alvarez', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bbd'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 56, 'accuratePass': 49, 'totalLongBalls': 12, 'accurateLongBalls': 5, 'goalAssist': 0, 'aerialWon': 3, 'duelLost': 2, 'duelWon': 4, 'challengeLost': 1, 'totalClearance': 8, 'outfielderBlock': 1, 'errorLeadToAShot': 1, 'wasFouled': 2, 'fouls': 1, 'minutesPlayed': 81, 'touches': 69, 'possessionLostCtrl': 7, 'keyPass': 1, 'passPerc': 0.875, 'longballsPerc': 0.4166666666666667}, 'team': 'Athletic Club', 'name': 'aitor-paredes', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bbe'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 46, 'accuratePass': 40, 'totalLongBalls': 4, 'accurateLongBalls': 4, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 2, 'aerialWon': 2, 'duelLost': 3, 'duelWon': 4, 'challengeLost': 1, 'totalContest': 1, 'wonContest': 1, 'onTargetScoringAttempt': 1, 'totalClearance': 2, 'interceptionWon': 1, 'totalTackle': 1, 'totalOffside': 1, 'minutesPlayed': 90, 'touches': 71, 'possessionLostCtrl': 8, 'expectedGoals': 0.0217, 'expectedAssists': 0.0124397, 'passPerc': 0.8695652173913043, 'longballsPerc': 1.0}, 'team': 'Athletic Club', 'name': 'yuri-berchiche', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bc1'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 22, 'accuratePass': 15, 'goalAssist': 0, 'totalCross': 2, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 4, 'duelWon': 4, 'dispossessed': 3, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'blockedScoringAttempt': 1, 'totalClearance': 2, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 41, 'possessionLostCtrl': 13, 'expectedGoals': 0.1155, 'expectedAssists': 0.0256862, 'passPerc': 0.6818181818181818, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'inaki-williams', 'rating': 6.6, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bc2'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 23, 'accuratePass': 18, 'goalAssist': 0, 'aerialLost': 1, 'duelLost': 4, 'duelWon': 2, 'dispossessed': 2, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 1, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 29, 'possessionLostCtrl': 7, 'expectedGoals': 0.0475, 'expectedAssists': 0.0100871, 'passPerc': 0.782608695652174, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'oihan-sancet', 'rating': 7.1, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bc4'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 21, 'accuratePass': 16, 'goalAssist': 1, 'aerialLost': 6, 'duelLost': 11, 'duelWon': 1, 'dispossessed': 1, 'totalContest': 1, 'blockedScoringAttempt': 1, 'totalClearance': 1, 'outfielderBlock': 1, 'wasFouled': 1, 'fouls': 3, 'minutesPlayed': 90, 'touches': 33, 'possessionLostCtrl': 9, 'expectedGoals': 0.0947, 'keyPass': 2, 'expectedAssists': 0.0203179, 'passPerc': 0.7619047619047619, 'longballsPerc': None}, 'team': 'Athletic Club', 'name': 'gorka-guruzeta', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd0'), 'position': 'G', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 6, 'totalLongBalls': 13, 'accurateLongBalls': 3, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 1, 'totalClearance': 2, 'goodHighClaim': 2, 'saves': 3, 'punches': 2, 'minutesPlayed': 90, 'touches': 25, 'possessionLostCtrl': 10, 'expectedAssists': 0.0100941, 'goalsPrevented': -0.0775, 'passPerc': 0.375, 'longballsPerc': 0.23076923076923078}, 'team': 'Getafe', 'name': 'david-soria', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd1'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 13, 'accuratePass': 7, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'totalCross': 1, 'aerialLost': 4, 'aerialWon': 1, 'duelLost': 8, 'duelWon': 6, 'challengeLost': 4, 'totalClearance': 4, 'interceptionWon': 6, 'totalTackle': 5, 'minutesPlayed': 90, 'touches': 47, 'possessionLostCtrl': 15, 'passPerc': 0.5384615384615384, 'longballsPerc': 0.4}, 'team': 'Getafe', 'name': 'juan-iglesias', 'rating': 7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd2'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 16, 'accuratePass': 13, 'totalLongBalls': 5, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 1, 'duelWon': 2, 'totalClearance': 8, 'interceptionWon': 2, 'wasFouled': 1, 'minutesPlayed': 90, 'touches': 28, 'possessionLostCtrl': 4, 'passPerc': 0.8125, 'longballsPerc': 0.4}, 'team': 'Getafe', 'name': 'djene', 'rating': 6.8, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd3'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 27, 'accuratePass': 16, 'totalLongBalls': 14, 'accurateLongBalls': 6, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 3, 'duelLost': 1, 'duelWon': 4, 'bigChanceCreated': 1, 'blockedScoringAttempt': 2, 'totalClearance': 4, 'outfielderBlock': 1, 'totalTackle': 1, 'minutesPlayed': 90, 'touches': 36, 'possessionLostCtrl': 12, 'expectedGoals': 0.0403, 'keyPass': 1, 'expectedAssists': 0.0784446, 'passPerc': 0.5925925925925926, 'longballsPerc': 0.42857142857142855}, 'team': 'Getafe', 'name': 'omar-alderete', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd4'), 'position': 'D', 'substitute': False, 'statistics': {'totalPass': 20, 'accuratePass': 13, 'totalLongBalls': 6, 'accurateLongBalls': 4, 'goalAssist': 0, 'aerialLost': 1, 'aerialWon': 1, 'duelLost': 2, 'duelWon': 7, 'totalTackle': 5, 'wasFouled': 1, 'fouls': 1, 'minutesPlayed': 90, 'touches': 43, 'possessionLostCtrl': 9, 'keyPass': 1, 'expectedAssists': 0.00668155, 'passPerc': 0.65, 'longballsPerc': 0.6666666666666666}, 'team': 'Getafe', 'name': 'diego-rico', 'rating': 6.9, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd5'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 19, 'accuratePass': 11, 'totalLongBalls': 3, 'accurateLongBalls': 2, 'goalAssist': 0, 'aerialWon': 5, 'duelLost': 2, 'duelWon': 11, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalClearance': 2, 'totalTackle': 4, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 32, 'possessionLostCtrl': 10, 'expectedGoals': 0.0154, 'passPerc': 0.5789473684210527, 'longballsPerc': 0.6666666666666666}, 'team': 'Getafe', 'name': 'nabil-aberdin', 'rating': 7.2, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd7'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 26, 'accuratePass': 15, 'totalLongBalls': 4, 'accurateLongBalls': 2, 'goalAssist': 1, 'totalCross': 8, 'accurateCross': 3, 'aerialLost': 4, 'aerialWon': 2, 'duelLost': 9, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 2, 'totalClearance': 1, 'interceptionWon': 1, 'wasFouled': 1, 'fouls': 2, 'minutesPlayed': 90, 'touches': 46, 'possessionLostCtrl': 19, 'keyPass': 2, 'expectedAssists': 0.115002, 'passPerc': 0.5769230769230769, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'luis-milla', 'rating': 6.7, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bd9'), 'position': 'M', 'substitute': False, 'statistics': {'totalPass': 10, 'accuratePass': 5, 'totalLongBalls': 2, 'accurateLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'duelLost': 6, 'duelWon': 3, 'challengeLost': 2, 'dispossessed': 2, 'totalContest': 1, 'wonContest': 1, 'shotOffTarget': 1, 'totalTackle': 1, 'wasFouled': 1, 'minutesPlayed': 79, 'touches': 20, 'possessionLostCtrl': 10, 'expectedGoals': 0.0101, 'keyPass': 1, 'passPerc': 0.5, 'longballsPerc': 0.5}, 'team': 'Getafe', 'name': 'alex-sola', 'rating': 6.5, 'match_result': 'D'}
{'_id': ObjectId('6764877b83201ea30d330bda'), 'position': 'F', 'substitute': False, 'statistics': {'totalPass': 11, 'accuratePass': 7, 'totalLongBalls': 1, 'goalAssist': 0, 'aerialLost': 2, 'aerialWon': 3, 'duelLost': 6, 'duelWon': 9, 'dispossessed': 1, 'totalContest': 1, 'onTargetScoringAttempt': 1, 'goals': 1, 'totalTackle': 2, 'wasFouled': 4, 'fouls': 2, 'totalOffside': 4, 'minutesPlayed': 90, 'touches': 30, 'possessionLostCtrl': 12, 'expectedGoals': 0.0469, 'keyPass': 1, 'passPerc': 0.6363636363636364, 'longballsPerc': None}, 'team': 'Getafe', 'name': 'christantus-uche', 'rating': 7.3, 'match_result': 'D'}
In [266]:
jugadores_ref = db["Jugadores_refinados"]

reescribir_mongo(jugadores_ref, resultado, True)

3. Analísis de datos.¶

Por fin tenemos los datos perfectamente refinados y listos para el analísis.

3.1. Distribución de puntuación.¶

Una de los primeros aspectos que vamos a analizar es como se distribuyen las puntuaciones de los jugadores. Según la propia página web de SofaScore el valor más frecuente o la moda es el 6.6, y a partir de esto se suele distribuir de manera normal las demás puntuaciones. Probemoslo.

In [267]:
resultado = jugadores_ref.aggregate([
    {
        "$group": {
            "_id": "$rating",  
            "count": { "$sum": 1 }
        }
    },
    {
    "$sort":{"_id":1}
    }
])

resultado = list(resultado)
for doc in resultado:
    print(doc)
{'_id': 5.1, 'count': 1}
{'_id': 5.6, 'count': 5}
{'_id': 5.7, 'count': 4}
{'_id': 5.8, 'count': 9}
{'_id': 5.9, 'count': 14}
{'_id': 6, 'count': 27}
{'_id': 6.1, 'count': 51}
{'_id': 6.2, 'count': 45}
{'_id': 6.3, 'count': 95}
{'_id': 6.4, 'count': 106}
{'_id': 6.5, 'count': 147}
{'_id': 6.6, 'count': 171}
{'_id': 6.7, 'count': 207}
{'_id': 6.8, 'count': 246}
{'_id': 6.9, 'count': 232}
{'_id': 7, 'count': 227}
{'_id': 7.1, 'count': 220}
{'_id': 7.2, 'count': 209}
{'_id': 7.3, 'count': 168}
{'_id': 7.4, 'count': 138}
{'_id': 7.5, 'count': 103}
{'_id': 7.6, 'count': 96}
{'_id': 7.7, 'count': 50}
{'_id': 7.8, 'count': 46}
{'_id': 7.9, 'count': 34}
{'_id': 8, 'count': 28}
{'_id': 8.1, 'count': 28}
{'_id': 8.2, 'count': 14}
{'_id': 8.3, 'count': 9}
{'_id': 8.4, 'count': 16}
{'_id': 8.5, 'count': 12}
{'_id': 8.6, 'count': 3}
{'_id': 8.7, 'count': 7}
{'_id': 8.8, 'count': 5}
{'_id': 8.9, 'count': 2}
{'_id': 9, 'count': 4}
{'_id': 9.2, 'count': 1}
{'_id': 9.3, 'count': 2}
{'_id': 9.5, 'count': 2}
{'_id': 9.7, 'count': 1}
{'_id': 9.8, 'count': 1}
{'_id': 10, 'count': 2}
In [268]:
valores = []
count = []
for datos in resultado:
    valores.append(datos["_id"])
    count.append(datos["count"])
print(valores)
print(count)
[5.1, 5.6, 5.7, 5.8, 5.9, 6, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 8, 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9, 9, 9.2, 9.3, 9.5, 9.7, 9.8, 10]
[1, 5, 4, 9, 14, 27, 51, 45, 95, 106, 147, 171, 207, 246, 232, 227, 220, 209, 168, 138, 103, 96, 50, 46, 34, 28, 28, 14, 9, 16, 12, 3, 7, 5, 2, 4, 1, 2, 2, 1, 1, 2]
In [269]:
%matplotlib inline
plt.bar(valores, count, width=0.1, label=valores, edgecolor="black")
plt.grid(axis='y', linestyle='--', alpha=0.7)
plt.xticks(np.arange(4.5, 10.5, 0.5))
plt.title("Distribución de puntuaciones")
plt.xlabel("Puntuación")
plt.ylabel("Frecuencia")
plt.show()
No description has been provided for this image

Vamos a intentar encerrar en dos líneas verticales el 50% de nuestros datos, pero queremos el 50% de los datos que están mas cerca de la media. Para ello sacaremos el percentil 25 y el percentil 75. Ya de paso vamos a calcular la mediana, ya que realmente la mediana es el percentil 50.

En un principio había hecho una función que puediese hacer cualquier percentil, pero luego me he dado cuenta que en el apartado "p" es posible usar un array de los percentiles que deseemos calcular. La forma que tenía al principio (cada función hacía un percentil) tiene que ser por fuerza menos optíma que la de ahora, puesto que cada vez que llamemos a la función, se tendrá que llamar a la base de datos y luego realizar los cálculos(que espero que sea QuickSelect). Con esta función tan solo llamará a la base de datos 1 vez.

In [270]:
def percentiles_mongo(collection, perc: list) -> float:
    perc = [i/100 for i in perc]
    percentil = collection.aggregate([
    {
        "$group": {
            "_id": None,  
            "percentil": {
                "$percentile": {
                    "input": "$rating",
                    "p": perc, 
                    "method": "approximate"
                    }
                }
            }
        }
    ])
    percentil = list(percentil)
    return percentil[0]["percentil"]
    
In [271]:
lista_percentiles = percentiles_mongo(jugadores_ref, [25, 50, 75])
perc_25, mediana, perc_75 = lista_percentiles
In [272]:
%matplotlib inline
# Al principio cree lo de los colores para hacer que se diferencie la barra con el valor maximo, 
# pero con los problemas que he tenido con la leyenda he decidido dejarlo para si en un futuro 
# aprendo como arreglarlo
max_val_index = np.argmax(count)
max_val = valores[max_val_index]
colores = ["blue" if i!=max_val_index else "red" for i in range(len(count))]

plt.bar(valores, count, color=colores, width=0.1, edgecolor="black")

plt.axvline(mediana, color='yellow', linestyle='--', label=f"Mediana: {mediana}")
plt.axvline(perc_25, color='green', linestyle='--', label=f'Percentil 25: {perc_25}')
plt.axvline(perc_75, color='green', linestyle='--', label=f"Percentil 75: {perc_75}")
plt.bar(max_val, count[max_val_index], width=0.1, color='red', label=f"Valor máximo: {max_val}")  
# Se queda un poco extraña la barra de Valor maximo porque esta superpuesta en la gráfica de barras, 
# ya que así es la única manera que he encontrado de ponerlo en la leyenda
plt.legend()
plt.grid(axis='y', linestyle='--', alpha=0.7)
plt.xticks(np.arange(4.5, 10.5, 0.5))
plt.title("Distribución de puntuaciones")
plt.xlabel("Puntuación")
plt.ylabel("Frecuencia")
Out[272]:
Text(0, 0.5, 'Frecuencia')
No description has been provided for this image

Como nos podemos fijar, este gráfico tiende a una distribución normal. Sacaremos la media y la desviación típica para poder tener la función de densidad de probabilidad. $$ f(x) = \frac{1}{\sigma \sqrt{2\pi}} e^{-\frac{1}{2} \left( \frac{x - \mu}{\sigma} \right)^2} $$ Podriamos usar los datos de "valores" y "count" para sacar $\sigma$ y $\mu$ usando las herramientas proporcionadas en python, pero tiene más gracia hacerlo con MongoDB, ya que es una clase de Bases de datos noSQL.

In [273]:
def distribucion_normal(collection, name_field):
    name_field = "$"+name_field
    resultado = collection.aggregate([
    {
        "$group": {
            "_id": None, 
            "media": {"$avg": name_field}, 
            "desviacion_tipica": {"$stdDevPop": name_field}  
            }
        }
    ])
    resultado = list(resultado)
    return resultado[0]["media"], resultado[0]["desviacion_tipica"]
In [274]:
media, desviacion_tipica = distribucion_normal(jugadores_ref, "rating")
print(f"Media: {media}")
print(f"Desviacion típica: {desviacion_tipica}")
Media: 7.004913916786227
Desviacion típica: 0.5357595204490572
In [275]:
x = np.linspace(4.5, 10.5, 100)

fdp = norm.pdf(x, loc=media, scale=desviacion_tipica)
In [276]:
%matplotlib inline
barras = plt.subplot()

barras.bar(valores, count, width=0.1, edgecolor="black")

distribucion = barras.twinx()
distribucion.plot(x, fdp, label="FDP", color="red")


plt.grid(axis='y', linestyle='--', alpha=0.7)
plt.xticks(np.arange(4.5, 10.5, 0.5))
plt.title("Distribución de puntuaciones")
barras.set_xlabel("Puntuación")
barras.set_ylabel("Frecuencia")
distribucion.set_ylabel("Distribución de probabilidades")
distribucion.set_ylim(0, max(fdp) * 1.1)
plt.legend(loc="upper right")
plt.tight_layout()
plt.show
Out[276]:
<function matplotlib.pyplot.show(close=None, block=None)>
No description has been provided for this image

Viendo que en esta gráfica la moda no se ubica en el punto 6.6 podemos sacar algunas posibles conclusiones:

  • Es posible que al filtrar por jugadores que hayan participado mas de {{min_minutos}}.
  • Puede ser que como 6.6 es la media global existan ligas inferiores (como Segunda RFEF) donde se encuentren peores jugadores.

3.2. Elección de posiciones.¶

A la hora de crear tu equipo en Fantasy tienes que poner una formación en tu equipo. Hay una amplía gama de formaciones, donde solo puedes colocar un portero, entre 3 y 5 defensas, 3-5 mediocentros y 1-3 delanteros. Como máximo debes tener 11 jugadores y la única posición fija será la de portero, que solo puede tener 1. Vamos a hacer un análisis de cuáles son las posiciones con:

  • Puntuaciones mayores a 9.5

  • Puntuaciones mayores a 7.0 y menores a 9.5

  • Puntuaciones menores a 7.0

  • Puntuaciones menores a 7.0 (sin incluir portero)

    SofaScore Guarda la posición de los jugadores según los siguientes valores:

  • "G": Goalkeeper

  • "D": Defender

  • "M": Midfield

  • "F": Forward

In [277]:
def acondicionar_res(resultado):
    posit = dict()
    for doc in resultado:
        posit[doc["_id"]] = (doc["total"])
    return posit
In [278]:
def pie_chart(result, feature, portero, min_val, max_val):

    result = acondicionar_res(result)
    if portero:
        portero = "(sin tener en cuenta a los porteros)"

    if feature=="$position":
        posibles_valores = {"G":0, "D":1, "M":2, "F":3}
        colores_posibles = ['#FFD966', '#6FA8DC', '#93C47D', '#E06666'] # Escogí estos colores de una paleta porque para las posiciones
                                                                        # no creía que fuese interesante colores tan vibrantes
        posibles_labels = ["Portero", "Defensa", "Mediocentro", "Delantero"]
        title = f"Posiciones con puntuaciones entre {min_val} y {max_val}"
    
    elif feature=="$match_result":
        posibles_valores = {"W":0, "D":1, "L":2}
        colores_posibles = ['green', 'yellow', 'red']
        posibles_labels = ["Win", "Draw", "Loose"]
        title = f"Relevancia del resultado del partido en las puntuaciones entre {min_val} y {max_val} "

    total = []
    colors = []
    labels = []
    porcentaje = []
    x = []
    for i in result.items():
        posicion = posibles_valores[i[0]]
        color = colores_posibles[posicion]
        label = posibles_labels[posicion] 
        x_i = [posicion, i[1], color, label]
        x.append(x_i)
    x.sort(key=lambda w: w[0])

    def func(pct, allvals):
        absolute = int(np.round(pct/100.*np.sum(allvals)))
        return f"{absolute:d}\n({pct:.1f}%)"


    suma = sum(list(map(lambda x: x[1], x)))
    for i in x:
        total.append(i[1])
        porcentaje.append(f"{((i[1]/suma)*100)} %")
        colors.append(i[2])
        labels.append(i[3])

    
    plt.pie(total, colors=colors, labels=labels, startangle=90,  wedgeprops=dict(width=0.75), autopct=lambda pct: func(pct, total))
    plt.title(title+portero)
    plt.show()

En este apartado realizo filtrado

In [279]:
def rango_puntuaciones(collection, feature, min_val=0, max_val=10, grafica=False, portero=True):
    if feature!="position" and feature!="match_result":
        return "No has seleccionado una feature correcta, solo se puede 'position' o 'match_result'"
    else:
        feature = "$"+feature


    if portero:
        portero = ""
    else:
        portero = "G"


    resultado = collection.aggregate([
        {
        "$match": {
            "rating": {"$gte": min_val, "$lte":max_val},
            "position": {"$ne": portero}
            }
        },
        {
            "$group":{
                "_id":feature,
                "total":{"$sum":1},
            }
        }
    ])
    
    resultado = list(resultado)
    if grafica:
        pie_chart(resultado, feature, portero, min_val, max_val)
    return resultado
    
In [280]:
rango_puntuaciones(jugadores_ref, "position",  min_val=9, grafica=True)
rango_puntuaciones(jugadores_ref, "position", min_val=7.0,max_val=9.0, grafica=True)
rango_puntuaciones(jugadores_ref, "position", 0, 7.0, grafica=True)
rango_puntuaciones(jugadores_ref, "position", 0, 7.0, grafica=True, portero=False)
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
Out[280]:
[{'_id': 'D', 'total': 732},
 {'_id': 'M', 'total': 488},
 {'_id': 'F', 'total': 179}]

3.2.1. Curiosidad¶

Por curiosidad, me gustaría saber cuales han sido los mejores jugadores y sus puntuaciones. Al fijarme un poco he notado que a Lamine Yamal le cuentan como MC, pero no estaba seguro si era solo en ese partido o en todos, asi que he hecho tambien un script para ver que posición le dan. Y para mi sorpresa le dan más veces de MC que delantero. Esto es más bien una anécdota, nada importante para el analísis.

In [281]:
resultado = jugadores_ref.find({"rating":{"$gte":9.5}}, {"name":1, "position":1, "rating":1})
for doc in resultado:
    print(doc)
{'_id': ObjectId('6764876c83201ea30d32f6cf'), 'position': 'F', 'name': 'vinicius-junior', 'rating': 10}
{'_id': ObjectId('6764876f83201ea30d32fc9c'), 'position': 'F', 'name': 'robert-lewandowski', 'rating': 9.8}
{'_id': ObjectId('6764877083201ea30d32fe49'), 'position': 'G', 'name': 'joan-garcia', 'rating': 9.5}
{'_id': ObjectId('6764877483201ea30d3303c7'), 'position': 'M', 'name': 'lamine-yamal', 'rating': 9.5}
{'_id': ObjectId('6764877683201ea30d33067d'), 'position': 'F', 'name': 'raphinha', 'rating': 10}
{'_id': ObjectId('6764877683201ea30d3306a7'), 'position': 'M', 'name': 'lo-celso-giovani', 'rating': 9.7}
In [282]:
resultado = jugadores_ref.aggregate([
    {
    "$match": {
        "name": {"$eq": "lamine-yamal"}
        }
    },
    {
        "$group":{
            "_id":"$position",
            "total":{"$sum":1},
        }
    }
])
for doc in resultado:
    print(doc)
{'_id': 'M', 'total': 10}
{'_id': 'F', 'total': 3}

3.3. Mejores equipos.¶

A la hora de decidir que fichar en tu equipo "del Fantasy", un factor importante es de que equipo vas a fichar a los jugadores. Quieres tener jugadores de los mejores equipos pero no quieres sobrecargar del mismo equipo, es por ello que vamos a utilizar los 10 mejores:

  • Equipos con la mejor media de puntuación de sus jugadores.
    • Elegir solo los 10 mejores equipos.
In [283]:
resultado = jugadores_ref.aggregate([
    {
        "$group":{
            "_id": "$team",
            "avg_total":{"$avg": "$rating"},
            "count_win": { "$sum": { "$cond": [{ "$eq": ["$match_result", "W"] }, 1, 0] } }, 
            "count_draw": { "$sum": { "$cond": [{ "$eq": ["$match_result", "D"] }, 1, 0] } },
            "count_loose": { "$sum": { "$cond": [{ "$eq": ["$match_result", "L"] }, 1, 0] } },
            "avg_win": { "$avg": { "$cond": [{ "$eq": ["$match_result", "W"] }, "$rating", "NaN"] } }, 
            "avg_draw": { "$avg": { "$cond": [{ "$eq": ["$match_result", "D"] }, "$rating", "NaN"] } },
            "avg_loose": { "$avg": { "$cond": [{ "$eq": ["$match_result", "L"] }, "$rating", "NaN"] } }
            }
    },
    {
        "$project":{
            "_id":1,
            "avg_total":1,
            "team_avg":{
                "avg_win": "$avg_win",
                "avg_draw": "$avg_draw",
                "avg_loose": "$avg_loose"
            },
            "match_result_count": {
                "count_win": "$count_win",
                "count_draw": "$count_draw",
                "count_loose": "$count_loose"
            }
        }
    },
    {
        "$sort":{"avg_total":-1}
    },
    {
        "$limit":10
    }
])
resultado = list(resultado)
print(json.dumps(resultado, indent=4))
[
    {
        "_id": "Real Madrid",
        "avg_total": 7.320382165605095,
        "team_avg": {
            "avg_win": 7.499009900990099,
            "avg_draw": 7.18157894736842,
            "avg_loose": 6.611111111111111
        },
        "match_result_count": {
            "count_win": 101,
            "count_draw": 38,
            "count_loose": 18
        }
    },
    {
        "_id": "Barcelona",
        "avg_total": 7.32013422818792,
        "team_avg": {
            "avg_win": 7.427450980392157,
            "avg_draw": 6.970588235294118,
            "avg_loose": 7.153333333333333
        },
        "match_result_count": {
            "count_win": 102,
            "count_draw": 17,
            "count_loose": 30
        }
    },
    {
        "_id": "Atl\u00e9tico Madrid",
        "avg_total": 7.126984126984127,
        "team_avg": {
            "avg_win": 7.241975308641976,
            "avg_draw": 6.947368421052632,
            "avg_loose": 6.771428571428571
        },
        "match_result_count": {
            "count_win": 81,
            "count_draw": 38,
            "count_loose": 7
        }
    },
    {
        "_id": "Real Sociedad",
        "avg_total": 7.125,
        "team_avg": {
            "avg_win": 7.260000000000001,
            "avg_draw": 7.2375,
            "avg_loose": 6.8812500000000005
        },
        "match_result_count": {
            "count_win": 60,
            "count_draw": 32,
            "count_loose": 48
        }
    },
    {
        "_id": "Real Betis",
        "avg_total": 7.053521126760564,
        "team_avg": {
            "avg_win": 7.335294117647059,
            "avg_draw": 6.990196078431373,
            "avg_loose": 6.775
        },
        "match_result_count": {
            "count_win": 51,
            "count_draw": 51,
            "count_loose": 40
        }
    },
    {
        "_id": "Villarreal",
        "avg_total": 7.026470588235294,
        "team_avg": {
            "avg_win": 7.190740740740741,
            "avg_draw": 7.014285714285714,
            "avg_loose": 6.775757575757575
        },
        "match_result_count": {
            "count_win": 54,
            "count_draw": 49,
            "count_loose": 33
        }
    },
    {
        "_id": "Celta Vigo",
        "avg_total": 7.009230769230769,
        "team_avg": {
            "avg_win": 7.217391304347826,
            "avg_draw": 6.934782608695652,
            "avg_loose": 6.880327868852459
        },
        "match_result_count": {
            "count_win": 46,
            "count_draw": 23,
            "count_loose": 61
        }
    },
    {
        "_id": "Mallorca",
        "avg_total": 7.004,
        "team_avg": {
            "avg_win": 7.104285714285714,
            "avg_draw": 7.126086956521739,
            "avg_loose": 6.8315789473684205
        },
        "match_result_count": {
            "count_win": 70,
            "count_draw": 23,
            "count_loose": 57
        }
    },
    {
        "_id": "Rayo Vallecano",
        "avg_total": 6.995934959349594,
        "team_avg": {
            "avg_win": 7.1780487804878055,
            "avg_draw": 7.011904761904762,
            "avg_loose": 6.7924999999999995
        },
        "match_result_count": {
            "count_win": 41,
            "count_draw": 42,
            "count_loose": 40
        }
    },
    {
        "_id": "Girona FC",
        "avg_total": 6.982962962962963,
        "team_avg": {
            "avg_win": 7.18,
            "avg_draw": 7.053333333333333,
            "avg_loose": 6.765454545454546
        },
        "match_result_count": {
            "count_win": 50,
            "count_draw": 30,
            "count_loose": 55
        }
    }
]
In [284]:
def grouped_bar(teams, data, ylabel, elegir):
    x = np.arange(len(teams))
    width = 0.25 
    multiplier = 0

    fig, ax = plt.subplots(layout='constrained')

    colores = {"Win":"green", "Draw":"yellow", "Loose": "red"}

    for attribute, measurement in data.items():
        offset = width * multiplier
        rects = ax.bar(x + offset, measurement, width, label=attribute, color=colores[attribute])
        ax.bar_label(rects, padding=3)
        multiplier += 1


    ax.set_ylabel(ylabel)
    ax.set_title('Rendimiento de los equipos')
    ax.set_xticks(x + width, teams, rotation=-45)
    ax.legend(loc='upper left', ncols=3)
    if elegir == "count": 
        ax.set_ylim(0, max(list(data.values())[0])*1.2)
    elif elegir == "avg":
        ax.set_ylim(6, max(list(data.values())[0])*1.05)
    plt.show()
In [285]:
def realizar_grouped_bar(resultado, elegir):
    if elegir=="count":
        tipo = "match_result_count"
        nombre ={"win": "count_win", "draw": "count_draw", "loose": "count_loose"}
        ylabel = "Resultados de cada jugador divididos en equipos"
    elif elegir=="avg":
        tipo = "team_avg"
        nombre ={"win": "avg_win", "draw": "avg_draw", "loose": "avg_loose"}
        ylabel = "Media puntuación por equipos"

    equipos= []
    win= []
    draw= []
    loose= []
    for i in resultado:
        equipos.append(i["_id"])
        win.append(i[tipo][nombre["win"]])
        draw.append(i[tipo][nombre["draw"]])
        loose.append(i[tipo][nombre["loose"]])
    data = {"Win":win, "Draw": draw, "Loose": loose}

    grouped_bar(equipos, data, ylabel, elegir)
In [286]:
realizar_grouped_bar(resultado, "count")
No description has been provided for this image
In [287]:
realizar_grouped_bar(resultado, "avg")
No description has been provided for this image